Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #47 from takeshixx/master
Browse files Browse the repository at this point in the history
Ensure key is None to support unencrypted packets
  • Loading branch information
crisidev committed Nov 10, 2022
2 parents de0d013 + f8a8731 commit 2c11642
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/tacacs_client
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ def account(cli, args):
def get_cli(args):
if not args.key:
args.key = getpass.getpass("tacacs+ shared key: ")
if not args.key:
args.key = None
family = socket.AF_INET
if args.v6:
family = family = socket.AF_INET6
Expand Down

0 comments on commit 2c11642

Please sign in to comment.