Skip to content
Snippets Groups Projects
Verified Commit 3df61eaa authored by iliya.saroukha's avatar iliya.saroukha :first_quarter_moon:
Browse files

fix: modified setup script

parent 0885a4d4
No related branches found
No related tags found
No related merge requests found
......@@ -23,13 +23,6 @@ echo "======= H1: Setting default route via R1 (i.e. 10.0.0.2) ======="
ssh H1 ip route add default via 10.0.0.2
sleep 1
echo "======= H1 and R1: Installing tcpdump ======="
ssh H1 apt install -y tcpdump
sleep 1
ssh R1 apt install -y tcpdump
sleep 1
echo "======= R1: Implementing NAT gateway ======="
scp ./r1_nat.ruleset root@R1:/root
sleep 1
......@@ -37,3 +30,14 @@ ssh R1 chmod +x ./r1_nat.ruleset
sleep 1
ssh R1 ./r1_nat.ruleset
sleep 1
echo "======= H1 and R1: Installing tcpdump ======="
ssh H1 apt update
sleep 1
ssh H1 apt install -y tcpdump
sleep 1
ssh R1 apt update
sleep 1
ssh R1 apt install -y tcpdump
sleep 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment