summaryrefslogtreecommitdiffstats
path: root/test/network/net_defaultgw.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/network/net_defaultgw.exp')
-rwxr-xr-xtest/network/net_defaultgw.exp46
1 files changed, 46 insertions, 0 deletions
diff --git a/test/network/net_defaultgw.exp b/test/network/net_defaultgw.exp
new file mode 100755
index 000000000..840f2ccac
--- /dev/null
+++ b/test/network/net_defaultgw.exp
@@ -0,0 +1,46 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7# check ip address
8send -- "firejail --net=br0 --ip=10.10.20.5 --defaultgw=10.10.20.2 --protocol=unix,inet,netlink\r"
9expect {
10 timeout {puts "TESTING ERROR 0\n";exit}
11 "eth0"
12}
13expect {
14 timeout {puts "TESTING ERROR 1\n";exit}
15 "10.10.20.5"
16}
17expect {
18 timeout {puts "TESTING ERROR 2\n";exit}
19 "255.255.255.248"
20}
21expect {
22 timeout {puts "TESTING ERROR 3\n";exit}
23 "UP"
24}
25expect {
26 timeout {puts "TESTING ERROR 4\n";exit}
27 "Child process initialized"
28}
29sleep 1
30
31# check default gateway
32send -- "ip route show\r"
33expect {
34 timeout {puts "TESTING ERROR 10.1\n";exit}
35 "default via 10.10.20.2 dev eth0"
36}
37
38send -- "ip route show\r"
39expect {
40 timeout {puts "TESTING ERROR 10.2\n";exit}
41 "10.10.20.0/29 dev eth0 proto kernel scope link"
42}
43sleep 1
44
45puts "\nall done\n"
46