diff options
Diffstat (limited to 'test/mocks/mass-pnf-sim/mass-pnf-sim.py')
-rwxr-xr-x | test/mocks/mass-pnf-sim/mass-pnf-sim.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/mocks/mass-pnf-sim/mass-pnf-sim.py b/test/mocks/mass-pnf-sim/mass-pnf-sim.py index 773b97193..a02e3fdd2 100755 --- a/test/mocks/mass-pnf-sim/mass-pnf-sim.py +++ b/test/mocks/mass-pnf-sim/mass-pnf-sim.py @@ -40,6 +40,11 @@ parser.add_argument( ) parser.add_argument( + '--typefileserver', + help='Type of the file server (SFTP/FTPS) to be included in the VES event', +) + +parser.add_argument( '--ipstart', help='IP address range beginning', ) @@ -87,6 +92,7 @@ if args.bootstrap and args.ipstart and args.urlves: print("\tIp Pnf SIM:" + str(IpPnfSim)) IpFileServer = args.ipfileserver + TypeFileServer = args.typefileserver PortSftp=start_port +1 @@ -114,6 +120,7 @@ if args.bootstrap and args.ipstart and args.urlves: str(args.urlves) + " " + \ str(IpPnfSim) + " " + \ str(IpFileServer) + " " + \ + str(TypeFileServer) + " " + \ str(PortSftp) + " " + \ str(PortFtps) + " " + \ str(UrlFtps) + " " + \ |