From 936c3afbae0953744bd8105a0145878c9cf986f1 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 19 Oct 2023 12:01:20 +0200 Subject: [PATCH] Add step for configuring default gateway --- Tutorial 1/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Tutorial 1/README.md b/Tutorial 1/README.md index 62cf45c..d43ba4a 100644 --- a/Tutorial 1/README.md +++ b/Tutorial 1/README.md @@ -20,7 +20,7 @@ no shutdown interface gi0/1 ip address 192.168.1.1 255.255.255.0 -ip nat outside +ip nat inside no shutdown # Enable network address translation @@ -44,6 +44,9 @@ exit # Enable DHCP for inner network service dhcp gi0/1 exit + +# Set default gateway +ip route 0.0.0.0 0.0.0.0 10.3.44.1 disable ```