SlideShare a Scribd company logo
3
Most read
4
Most read
5
Most read
Basic Cisco 800 Router Configuration for
Internet Access
The Cisco 800 series routers are part of the “Branch Office” category, used mainly
for SOHO purposes or for connecting remote branch offices to a central location.
They are “fixed hardware configuration” devices, meaning that they don’t have
any plug-in hardware slots for inserting additional interfaces to the device (all the
interfaces are fixed).
All the 800 series models come with a 4-port 10/100 managed switch used for
connecting the internal LAN computers, and with an IOS software that supports
security features including the Firewall set. The main difference of each model is
the WAN interface. All models that end with “1” in the model number (i.e 851,
861, 871, 881, 891) have a 10/100 Fast Ethernet interface as a WAN port. The
other models have an xDSL type WAN port (i.e ADSL, G.SHDL, VDSL2). Also,
all models have the option of a WiFi Radio interface (the model number ends with
a “W”, e.g 851W, 857W, 861W etc).
In this post I will describe a basic configuration scenario for connecting a Cisco
800 router for Internet access. I will use a model with an Ethernet WAN interface
(such as 851, 861, 871, etc) since those models are the most popular.
Something to have in mind for all 800 series routers, the four LAN interfaces (FE0
up to FE3) are Layer2 switch interfaces that are assigned by default to Vlan1. This
means that you can not assign an IP address directly to the LAN interfaces. The IP
address for the LAN-facing side of the router is assigned under “interface Vlan1”.
On the other hand, the WAN interface (FE4) is a normal Layer3 router port, which
means you can assign an IP address directly on the interface (“interface
FastEthernet4”).
I will describe three basic scenarios which are frequently encountered in real
networks.
1. Scenario 1: WAN IP address of router is assigned dynamically by the ISP.
LAN IP addresses assigned dynamically from the router to the internal PCs.
2. Scenario 2: WAN IP address of router is static. LAN IP addresses assigned
dynamically from the router.
3. Scenario 3: WAN IP address of router is static. An internal LAN Web
Server exists. The router performs a static Port NAT (port redirection) to
forward traffic from Internet towards the internal Web Server.
Scenario 1:
Configuration:
The following is the basic configuration needed for the simple scenario above.
configure terminal
enable secret somesecretpassword
! Configure the DHCP pool to assign addresses to internal hosts
ip dhcp pool vlan1pool
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 100.100.100.36
! Do not assign addresses 1 to 30
ip dhcp excluded-address 192.168.1.1 192.168.1.30
! This is the LAN facing interface of the 800 router. Used as gateway for PCs
interface vlan 1
ip address 192.168.1.1 255.255.255.0
ip nat inside
no shut
! Interfaces FE0 to FE3 are Layer 2 interfaces
interface FastEthernet0
no shut
interface FastEthernet1
no shut
interface FastEthernet2
no shut
interface FastEthernet3
no shut
! This is the WAN interface getting address via DHCP from the ISP
interface FastEthernet 4
no shut
ip address dhcp
ip nat outside
! Configure NAT. All internal hosts will be nated on the WAN interface
ip nat inside source list 1 interface fastethernet4 overload
access-list 1 permit 192.168.1.0 0.0.0.255
ip route 0.0.0.0 0.0.0.0 fastethernet4
line vty 0 4
password somestrongpassword
Scenario 2:
Configuration:
This is the same configuration as scenario 1 except that the WAN IP address is
static and also the default gateway of our ISP is known.
The only difference from the configuration above is on the WAN interface and on
default route:
! This is the WAN interface with static IP
interface FastEthernet 4
no shut
ip address 100.100.100.1 255.255.255.0
ip nat outside
ip route 0.0.0.0 0.0.0.0 100.100.100.2
Scenario 3:
Configuration:
Here the WAN address is static and we have also an internal Web Server for which
we need to allow HTTP access from Internet. To do this we must configure a static
NAT with port redirection. Traffic that comes towards our WAN public address
100.100.100.1 on port 80 will be redirected by the router to the internal Web
Server at address 192.168.1.10 on port 80.
configure terminal
enable secret somesecretpassword
! Configure the DHCP pool to assign addresses to internal hosts
ip dhcp pool vlan1pool
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 100.100.100.36
! Do not assign addresses 1 to 30
ip dhcp excluded-address 192.168.1.1 192.168.1.30
! This is the LAN facing interface of the 800 router. Used as gateway for PCs
interface vlan 1
ip address 192.168.1.1 255.255.255.0
ip nat inside
no shut
! Interfaces FE0 to FE3 are Layer 2 interfaces
interface FastEthernet0
no shut
interface FastEthernet1
no shut
interface FastEthernet2
no shut
interface FastEthernet3
no shut
! This is the WAN interface with static IP
interface FastEthernet 4
no shut
ip address 100.100.100.1 255.255.255.0
ip nat outside
! Configure NAT. All internal hosts will be nated on the WAN interface
ip nat inside source list 1 interface fastethernet4 overload
access-list 1 permit 192.168.1.0 0.0.0.255
! Configure static NAT for port redirection
ip nat inside source static tcp 192.168.1.10 80 100.100.100.1 80 extendable
ip route 0.0.0.0 0.0.0.0 100.100.100.2
line vty 0 4
password somestrongpassword
About the Author
Harris Andrea is a Cisco Certified Professional with more than 18 years of experience
working with Cisco network technologies. He is the author of two Cisco Books
(“Cisco ASA Firewall Fundamentals” and “Cisco VPN Configuration Guide”) which
have been embraced by thousands of Cisco professionals all over the world. You can
find more Cisco configuration guides and tutorials on his blog here
http://www.networkstraining.com

More Related Content

What's hot (20)

DOC
Cisco switch commands cheat sheet
3Anetwork com
 
PPT
Ch5 lecture slides Chenming Hu Device for IC
Chenming Hu
 
PPTX
CCNA ppt
Sumant Garg
 
PPT
CCNA PPT
Reetesh Gupta
 
PPTX
Dft (design for testability)
shaik sharief
 
PDF
CCNA CheatSheet
Eng. Emad Al-Atoum
 
PPTX
Master Baseband 6620 & 6630 Commissioning On Site
wafawafa52
 
PDF
OXX B66 Rx sensitivity and desense analysis issue debug
Pei-Che Chang
 
PDF
Troubleshooting BGP
Duane Bodle
 
PPT
Modes of router
Er. Anmol Bhagat
 
PDF
Netmanias L2,L3 Training (5) L3 SW Architecture
Chris Changmo Yoo
 
PDF
Agilent ADS 模擬手冊 [實習3] 壓控振盪器模擬
Simen Li
 
PPTX
JUNOS: OSPF and BGP
Zenith Networks
 
PPT
Les vlans
Lhoussain Ait Benmouh
 
PPT
Bgp (1)
Vamsidhar Naidu
 
PDF
Overview of Spanning Tree Protocol
Arash Foroughi
 
DOCX
How to configure vlan, stp, dtp step by step guide
IT Tech
 
PPTX
Introduction to vxlan
Mohammed Umair
 
PDF
Operationalizing EVPN in the Data Center: Part 2
Cumulus Networks
 
Cisco switch commands cheat sheet
3Anetwork com
 
Ch5 lecture slides Chenming Hu Device for IC
Chenming Hu
 
CCNA ppt
Sumant Garg
 
CCNA PPT
Reetesh Gupta
 
Dft (design for testability)
shaik sharief
 
CCNA CheatSheet
Eng. Emad Al-Atoum
 
Master Baseband 6620 & 6630 Commissioning On Site
wafawafa52
 
OXX B66 Rx sensitivity and desense analysis issue debug
Pei-Che Chang
 
Troubleshooting BGP
Duane Bodle
 
Modes of router
Er. Anmol Bhagat
 
Netmanias L2,L3 Training (5) L3 SW Architecture
Chris Changmo Yoo
 
Agilent ADS 模擬手冊 [實習3] 壓控振盪器模擬
Simen Li
 
JUNOS: OSPF and BGP
Zenith Networks
 
Overview of Spanning Tree Protocol
Arash Foroughi
 
How to configure vlan, stp, dtp step by step guide
IT Tech
 
Introduction to vxlan
Mohammed Umair
 
Operationalizing EVPN in the Data Center: Part 2
Cumulus Networks
 

Viewers also liked (17)

PDF
Route Redistribution
Netwax Lab
 
PPT
Kewirausahaan
heldamayasari
 
PPT
Overview on china's philanthropy for ACCP
give2asia
 
PDF
Editioning use in ebs
pasalapudi123
 
PDF
How To Promote Your Business On Pinterest
Team Mango Media Private Limited
 
PDF
Asat book0-fresh blood
Ashraf Ali
 
TXT
Tao tai khoan google play
Minh Hương Nguyễn
 
PDF
An incentive model of partialinformation sharing in supply chain
Ali Elkhateb
 
DOCX
JCLIC
laurittarp
 
PPTX
Case study: #GoogleMoLang
noreensayoc
 
PDF
Jdj Foss Java Tools
Ganesh Samarthyam
 
PDF
Q3 2013 ASSA ABLOY investors presentation 28 october
ASSA ABLOY
 
PDF
Kedaulatan Rakyat 2 Maret 2014
hastapurnama
 
PDF
Cob 20081113 1
macavity_d_katt
 
PDF
فرانز كافكا - الآثار الكاملة - الجزء الأول
A-Ile Self-hallucination
 
PPSX
Email & Social Media Training
William Mann
 
Route Redistribution
Netwax Lab
 
Kewirausahaan
heldamayasari
 
Overview on china's philanthropy for ACCP
give2asia
 
Editioning use in ebs
pasalapudi123
 
How To Promote Your Business On Pinterest
Team Mango Media Private Limited
 
Asat book0-fresh blood
Ashraf Ali
 
Tao tai khoan google play
Minh Hương Nguyễn
 
An incentive model of partialinformation sharing in supply chain
Ali Elkhateb
 
JCLIC
laurittarp
 
Case study: #GoogleMoLang
noreensayoc
 
Jdj Foss Java Tools
Ganesh Samarthyam
 
Q3 2013 ASSA ABLOY investors presentation 28 october
ASSA ABLOY
 
Kedaulatan Rakyat 2 Maret 2014
hastapurnama
 
Cob 20081113 1
macavity_d_katt
 
فرانز كافكا - الآثار الكاملة - الجزء الأول
A-Ile Self-hallucination
 
Email & Social Media Training
William Mann
 
Ad

Similar to Basic Cisco 800 Router Configuration for Internet Access (20)

PPT
seminarr KJ CISCO SHDKNDSLKADASDAAOIASHD DAOIDAI
ssuser8e59021
 
PDF
Switch inter vlan_routing
Ramesh Thumburu
 
PPT
Training Day Slides
adam_merritt
 
PPT
Nat 03
Davinder Chauhan
 
DOCX
Nat report2
Davinder Chauhan
 
DOCX
How to configure static nat on cisco routers
IT Tech
 
PDF
Case study
mohsin225
 
PDF
CCNA Case Study Word No Code
Gerome Jan M. Llames
 
DOC
Enterprise Network Manager: the Router-On-A-stick
3Anetwork com
 
PDF
Kwfsbs67 en-v1
Jerry Jeldres
 
PDF
欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】
velosonando62
 
PDF
欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】
ahmedendrise81
 
PDF
2024欧洲杯最好的投注软件-2024欧洲杯最好的投注软件网址-2024欧洲杯最好的投注软件|【​网址​🎉ac123.net🎉​】
akrooshsaleem36
 
PDF
2024欧洲杯平台-2024欧洲杯平台网址-2024欧洲杯平台|【​网址​🎉ac123.net🎉​】
talhaaslan625
 
PDF
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
foismail170
 
PDF
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】
foismail170
 
PDF
9.VLAN+Principle - Network - ruijie.pdf (
RaihanRamadhan71
 
PPTX
Network Design on cisco packet tracer 6.0
Saurav Pandey
 
PPT
Ccna 9
Simanto Basher
 
PDF
ACME Corp 205110014302001DB8CAFE11564 2051.pdf
mail354931
 
seminarr KJ CISCO SHDKNDSLKADASDAAOIASHD DAOIDAI
ssuser8e59021
 
Switch inter vlan_routing
Ramesh Thumburu
 
Training Day Slides
adam_merritt
 
Nat report2
Davinder Chauhan
 
How to configure static nat on cisco routers
IT Tech
 
Case study
mohsin225
 
CCNA Case Study Word No Code
Gerome Jan M. Llames
 
Enterprise Network Manager: the Router-On-A-stick
3Anetwork com
 
Kwfsbs67 en-v1
Jerry Jeldres
 
欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】
velosonando62
 
欧洲杯比赛投注官网-欧洲杯比赛投注官网网站-欧洲杯比赛投注官网|【​网址​🎉ac123.net🎉​】
ahmedendrise81
 
2024欧洲杯最好的投注软件-2024欧洲杯最好的投注软件网址-2024欧洲杯最好的投注软件|【​网址​🎉ac123.net🎉​】
akrooshsaleem36
 
2024欧洲杯平台-2024欧洲杯平台网址-2024欧洲杯平台|【​网址​🎉ac123.net🎉​】
talhaaslan625
 
欧洲杯投注app-欧洲杯投注app推荐-欧洲杯投注app| 立即访问【ac123.net】
foismail170
 
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】
foismail170
 
9.VLAN+Principle - Network - ruijie.pdf (
RaihanRamadhan71
 
Network Design on cisco packet tracer 6.0
Saurav Pandey
 
ACME Corp 205110014302001DB8CAFE11564 2051.pdf
mail354931
 
Ad

Recently uploaded (20)

PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
July Patch Tuesday
Ivanti
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
July Patch Tuesday
Ivanti
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 

Basic Cisco 800 Router Configuration for Internet Access

  • 1. Basic Cisco 800 Router Configuration for Internet Access The Cisco 800 series routers are part of the “Branch Office” category, used mainly for SOHO purposes or for connecting remote branch offices to a central location. They are “fixed hardware configuration” devices, meaning that they don’t have any plug-in hardware slots for inserting additional interfaces to the device (all the interfaces are fixed). All the 800 series models come with a 4-port 10/100 managed switch used for connecting the internal LAN computers, and with an IOS software that supports security features including the Firewall set. The main difference of each model is the WAN interface. All models that end with “1” in the model number (i.e 851, 861, 871, 881, 891) have a 10/100 Fast Ethernet interface as a WAN port. The other models have an xDSL type WAN port (i.e ADSL, G.SHDL, VDSL2). Also, all models have the option of a WiFi Radio interface (the model number ends with a “W”, e.g 851W, 857W, 861W etc).
  • 2. In this post I will describe a basic configuration scenario for connecting a Cisco 800 router for Internet access. I will use a model with an Ethernet WAN interface (such as 851, 861, 871, etc) since those models are the most popular. Something to have in mind for all 800 series routers, the four LAN interfaces (FE0 up to FE3) are Layer2 switch interfaces that are assigned by default to Vlan1. This means that you can not assign an IP address directly to the LAN interfaces. The IP address for the LAN-facing side of the router is assigned under “interface Vlan1”. On the other hand, the WAN interface (FE4) is a normal Layer3 router port, which means you can assign an IP address directly on the interface (“interface FastEthernet4”). I will describe three basic scenarios which are frequently encountered in real networks. 1. Scenario 1: WAN IP address of router is assigned dynamically by the ISP. LAN IP addresses assigned dynamically from the router to the internal PCs. 2. Scenario 2: WAN IP address of router is static. LAN IP addresses assigned dynamically from the router. 3. Scenario 3: WAN IP address of router is static. An internal LAN Web Server exists. The router performs a static Port NAT (port redirection) to forward traffic from Internet towards the internal Web Server.
  • 3. Scenario 1: Configuration: The following is the basic configuration needed for the simple scenario above. configure terminal enable secret somesecretpassword ! Configure the DHCP pool to assign addresses to internal hosts ip dhcp pool vlan1pool network 192.168.1.0 255.255.255.0 default-router 192.168.1.1 dns-server 100.100.100.36 ! Do not assign addresses 1 to 30 ip dhcp excluded-address 192.168.1.1 192.168.1.30
  • 4. ! This is the LAN facing interface of the 800 router. Used as gateway for PCs interface vlan 1 ip address 192.168.1.1 255.255.255.0 ip nat inside no shut ! Interfaces FE0 to FE3 are Layer 2 interfaces interface FastEthernet0 no shut interface FastEthernet1 no shut interface FastEthernet2 no shut interface FastEthernet3 no shut ! This is the WAN interface getting address via DHCP from the ISP interface FastEthernet 4 no shut ip address dhcp ip nat outside ! Configure NAT. All internal hosts will be nated on the WAN interface ip nat inside source list 1 interface fastethernet4 overload access-list 1 permit 192.168.1.0 0.0.0.255 ip route 0.0.0.0 0.0.0.0 fastethernet4 line vty 0 4 password somestrongpassword
  • 5. Scenario 2: Configuration: This is the same configuration as scenario 1 except that the WAN IP address is static and also the default gateway of our ISP is known. The only difference from the configuration above is on the WAN interface and on default route: ! This is the WAN interface with static IP interface FastEthernet 4 no shut ip address 100.100.100.1 255.255.255.0 ip nat outside ip route 0.0.0.0 0.0.0.0 100.100.100.2
  • 6. Scenario 3: Configuration: Here the WAN address is static and we have also an internal Web Server for which we need to allow HTTP access from Internet. To do this we must configure a static NAT with port redirection. Traffic that comes towards our WAN public address 100.100.100.1 on port 80 will be redirected by the router to the internal Web Server at address 192.168.1.10 on port 80. configure terminal enable secret somesecretpassword
  • 7. ! Configure the DHCP pool to assign addresses to internal hosts ip dhcp pool vlan1pool network 192.168.1.0 255.255.255.0 default-router 192.168.1.1 dns-server 100.100.100.36 ! Do not assign addresses 1 to 30 ip dhcp excluded-address 192.168.1.1 192.168.1.30 ! This is the LAN facing interface of the 800 router. Used as gateway for PCs interface vlan 1 ip address 192.168.1.1 255.255.255.0 ip nat inside no shut ! Interfaces FE0 to FE3 are Layer 2 interfaces interface FastEthernet0 no shut interface FastEthernet1 no shut interface FastEthernet2 no shut interface FastEthernet3 no shut ! This is the WAN interface with static IP interface FastEthernet 4 no shut ip address 100.100.100.1 255.255.255.0 ip nat outside ! Configure NAT. All internal hosts will be nated on the WAN interface ip nat inside source list 1 interface fastethernet4 overload access-list 1 permit 192.168.1.0 0.0.0.255
  • 8. ! Configure static NAT for port redirection ip nat inside source static tcp 192.168.1.10 80 100.100.100.1 80 extendable ip route 0.0.0.0 0.0.0.0 100.100.100.2 line vty 0 4 password somestrongpassword About the Author Harris Andrea is a Cisco Certified Professional with more than 18 years of experience working with Cisco network technologies. He is the author of two Cisco Books (“Cisco ASA Firewall Fundamentals” and “Cisco VPN Configuration Guide”) which have been embraced by thousands of Cisco professionals all over the world. You can find more Cisco configuration guides and tutorials on his blog here http://www.networkstraining.com