You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('-ip', '--interface-address', action='store', default='0.0.0.0', help='ip address of listening interface')
45
+
parser.add_argument('-ip', '--interface-address', action='store', default=argparse.SUPPRESS, help='ip address of listening interface ("0.0.0.0" or "::" if omitted)')
46
46
parser.add_argument('-port', action='store', default='445', help='TCP port for listening incoming connections (default 445)')
47
+
parser.add_argument('-6','--ipv6', action='store_true',help='Listen on IPv6')
47
48
parser.add_argument('-smb2support', action='store_true', default=False, help='SMB2 Support (experimental!)')
48
49
parser.add_argument('-outputfile', action='store', default=None, help='Output file to log smbserver output messages')
:param string configFile: a file with all the servers' configuration. If no file specified, this class will create the basic parameters needed to run. You will need to add your shares manually tho. See addShare() method
0 commit comments