#!/usr/bin/expect -f set timeout 10 spawn $env(SHELL) match_max 100000 # check ip address send -- "firejail --net=br0 --net=br1 --defaultgw=10.10.30.89\r" expect { timeout {puts "TESTING ERROR 0\n";exit} "eth1" } expect { timeout {puts "TESTING ERROR 4\n";exit} "Child process initialized" } # check default gateway send -- "bash\r" sleep 1 send -- "netstat -rn;pwd\r" expect { timeout {puts "TESTING ERROR 10.1\n";exit} "0.0.0.0" } expect { timeout {puts "TESTING ERROR 10.2\n";exit} "10.10.30.89" } expect { timeout {puts "TESTING ERROR 10.3\n";exit} "eth1" } expect { timeout {puts "TESTING ERROR 10.4\n";exit} "10.10.20.0" } expect { timeout {puts "TESTING ERROR 10.5\n";exit} "0.0.0.0" } expect { timeout {puts "TESTING ERROR 10.6\n";exit} "eth0" } expect { timeout {puts "TESTING ERROR 10.4\n";exit} "10.10.30.0" } expect { timeout {puts "TESTING ERROR 10.5\n";exit} "0.0.0.0" } expect { timeout {puts "TESTING ERROR 10.6\n";exit} "eth1" } expect { timeout {puts "TESTING ERROR 10\n";exit} "home" } sleep 1 puts "\n"