BjornMagnussonXA | 0829406 | 2019-03-26 12:48:27 +0000 | [diff] [blame] | 1 | #/bin/bash |
| 2 | |
BjornMagnussonXA | a79a043 | 2019-07-17 08:26:50 +0000 | [diff] [blame] | 3 | # Script for manually starting all simulators with test setting below |
| 4 | # Matching json config is needed in CBS/Consul as well. Use consul_config.sh to add config to consul |
BjornMagnussonXA | 0829406 | 2019-03-26 12:48:27 +0000 | [diff] [blame] | 5 | |
BjornMagnussonXA | a79a043 | 2019-07-17 08:26:50 +0000 | [diff] [blame] | 6 | export MR_TC="--tc710" # Test behaviour for MR sim |
| 7 | export MR_GROUPS="OpenDcae-c12:PM_MEAS_FILES" # Comma-separated list of <consumer-group>:<change-identifier> |
| 8 | export MR_FILE_PREFIX_MAPPING="PM_MEAS_FILES:A" # Comma-separated list of <change-identifer>:<file-name-prefix> |
BjornMagnussonXA | 0829406 | 2019-03-26 12:48:27 +0000 | [diff] [blame] | 9 | |
BjornMagnussonXA | a79a043 | 2019-07-17 08:26:50 +0000 | [diff] [blame] | 10 | export DR_TC="--tc normal" # Test behaviour for DR sim |
| 11 | export DR_FEEDS="1:A,2:B,3:C,4:D" # Comma-separated of <feed-id>:<file-name-prefixes> for DR sim |
| 12 | |
| 13 | export DR_REDIR_TC="--tc normal" # Test behaviour for DR redir sim |
| 14 | export DR_REDIR_FEEDS="1:A,2:B,3:C,4:D" # Comma-separated of <feed-id>:<file-name-prefixes> for DR redir sim |
| 15 | |
| 16 | export NUM_FTPFILES="105" # Number of FTP files to generate per PNF |
| 17 | export NUM_PNFS="700" # Number of unuqie PNFs to generate FTP file for |
| 18 | export FILE_SIZE="1MB" # File size for FTP file (1KB, 1MB, 5MB, 50MB or ALL) |
| 19 | export FTP_TYPE="SFTP" # Type of FTP files to generate (SFTP, FTPS or ALL) |
| 20 | export FTP_FILE_PREFIXES="A,B,C,D" # Comma separated list of file name prefixes for ftp files |
| 21 | export NUM_FTP_SERVERS=1 # Number of FTP server to distribute the PNFs (Max 5) |
| 22 | |
| 23 | export SFTP_SIMS="localhost:21,localhost:22,localhost:23,localhost:24,localhost:25" # Comma separated list for SFTP servers host:port |
| 24 | export FTPS_SIMS="localhost:1022,localhost:1023,localhost:1024,localhost:1026,localhost:1026" # Comma separated list for FTPS servers host:port |
| 25 | |
| 26 | export DR_REDIR_SIM="localhost" # Hostname of DR redirect server |
| 27 | |
| 28 | source ./simulators-start.sh |