<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Networks Training &#187; Cisco 800 Series Routers</title>
	<atom:link href="http://www.networkstraining.com/category/cisco-800-series-routers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.networkstraining.com</link>
	<description>IP Networks Training and Tutorials</description>
	<lastBuildDate>Sun, 15 Jan 2012 10:35:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Basic Cisco 800 Router Configuration for Internet Access</title>
		<link>http://www.networkstraining.com/basic-cisco-800-router-configuration-for-internet-access/</link>
		<comments>http://www.networkstraining.com/basic-cisco-800-router-configuration-for-internet-access/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 08:13:11 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco 800 Series Routers]]></category>
		<category><![CDATA[cisco 800 basic configuration]]></category>
		<category><![CDATA[cisco 800 internet access]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=849</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>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).</p>
<p>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 “<strong>1</strong>” 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 “<strong>W</strong>”, e.g 851W, 857W, 861W etc).</p>
<p>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.</p>
<p>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 “<strong>interface Vlan1</strong>”. 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 (“<strong>interface FastEthernet4</strong>”).</p>
<p>I will describe three basic scenarios which are frequently encountered in real networks.</p>
<ol>
<li><span style="text-decoration: underline;">Scenario 1</span>: WAN IP address of router is assigned dynamically by the ISP. LAN IP addresses assigned dynamically from the router to the internal PCs.</li>
<li><span style="text-decoration: underline;">Scenario 2</span>: WAN IP address of router is static. LAN IP addresses assigned dynamically from the router.</li>
<li><span style="text-decoration: underline;">Scenario 3</span>: 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.</li>
</ol>
<p><strong><span style="text-decoration: underline;"><span style="color: #ff0000;">Scenario 1:</span></span></strong></p>
<p style="text-align: center;"><img class="alignnone" title="cisco 800 internet access" src="http://www.networkstraining.com/images/cisco-800-internet-access-1.jpg" alt="" width="296" height="429" /></p>
<p><span style="text-decoration: underline;">Configuration:</span></p>
<p>The following is the basic configuration needed for the simple scenario above.</p>
<p><strong>configure terminal</strong></p>
<p><strong>enable secret somesecretpassword</strong></p>
<p><em>! Configure the DHCP pool to assign addresses to internal hosts</em><br />
<strong>ip dhcp pool vlan1pool</strong><br />
<strong> network 192.168.1.0 255.255.255.0</strong><br />
<strong> default-router 192.168.1.1 </strong><br />
<strong> dns-server 100.100.100.36</strong></p>
<p><em>! Do not assign addresses 1 to 30</em><br />
<strong>ip dhcp excluded-address 192.168.1.1 192.168.1.30</strong></p>
<p><em>! This is the LAN facing interface of the 800 router. Used as gateway for PCs</em><br />
<strong>interface vlan 1 </strong><br />
<strong>ip address 192.168.1.1 255.255.255.0 </strong><br />
<strong>ip nat inside </strong><br />
<strong>no shut</strong></p>
<p><em>! Interfaces FE0 to FE3 are Layer 2 interfaces</em><br />
<strong>interface FastEthernet0</strong><br />
<strong>no shut</strong><br />
<strong>interface FastEthernet1</strong><br />
<strong>no shut</strong></p>
<p><strong>interface FastEthernet2</strong><br />
<strong>no shut</strong></p>
<p><strong>interface FastEthernet3</strong><br />
<strong>no shut</strong></p>
<p><em>! This is the WAN interface getting address via DHCP from the ISP</em><br />
<strong>interface FastEthernet 4 </strong><br />
<strong>no shut</strong><br />
<strong>ip address dhcp</strong><br />
<strong>ip nat outside </strong></p>
<p><em>! Configure NAT. All internal hosts will be nated on the WAN interface</em><br />
<strong>ip nat inside source list 1 interface fastethernet4 overload</strong><br />
<strong>access-list 1 permit 192.168.1.0 0.0.0.255</strong></p>
<p><strong>ip route 0.0.0.0 0.0.0.0 fastethernet4</strong></p>
<p><strong>line vty 0 4</strong><br />
<strong>password somestrongpassword</strong></p>
<p><strong><span style="text-decoration: underline;"><span style="color: #ff0000;">Scenario 2:</span></span></strong></p>
<p style="text-align: center;"><img class="alignnone" title="cisco 800 internet access" src="http://www.networkstraining.com/images/cisco-800-internet-access-2.jpg" alt="" width="296" height="429" /></p>
<p><span style="text-decoration: underline;">Configuration:</span></p>
<p>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.</p>
<p>The only difference from the configuration above is on the WAN interface and on default route:</p>
<p><em>! This is the WAN interface with static IP</em></p>
<p><strong>interface FastEthernet 4 </strong><br />
<strong>no shut</strong><br />
<strong>ip address 100.100.100.1 255.255.255.0</strong><br />
<strong>ip nat outside </strong></p>
<p><strong>ip route 0.0.0.0 0.0.0.0 100.100.100.2</strong></p>
<p><strong><span style="text-decoration: underline;"><span style="color: #ff0000;">Scenario 3:</span></span></strong></p>
<p style="text-align: center;"><img class="alignnone" title="cisco 800 internet access with web server" src="http://www.networkstraining.com/images/cisco-800-internet-access-3.jpg" alt="" width="331" height="459" /></p>
<p><span style="text-decoration: underline;">Configuration:</span></p>
<p>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.</p>
<p><strong>configure terminal</strong></p>
<p><strong>enable secret somesecretpassword</strong></p>
<p><em>! Configure the DHCP pool to assign addresses to internal hosts</em><br />
<strong>ip dhcp pool vlan1pool</strong><br />
<strong> network 192.168.1.0 255.255.255.0</strong><br />
<strong> default-router 192.168.1.1 </strong><br />
<strong> dns-server 100.100.100.36</strong></p>
<p><em>! Do not assign addresses 1 to 30</em><br />
<strong>ip dhcp excluded-address 192.168.1.1 192.168.1.30</strong></p>
<p><em>! This is the LAN facing interface of the 800 router. Used as gateway for PCs</em><br />
<strong>interface vlan 1 </strong><br />
<strong>ip address 192.168.1.1 255.255.255.0 </strong><br />
<strong>ip nat inside </strong><br />
<strong>no shut</strong></p>
<p><em>! Interfaces FE0 to FE3 are Layer 2 interfaces</em><br />
<strong>interface FastEthernet0</strong><br />
<strong>no shut</strong></p>
<p><strong>interface FastEthernet1</strong><br />
<strong>no shut</strong></p>
<p><strong>interface FastEthernet2</strong><br />
<strong>no shut</strong></p>
<p><strong>interface FastEthernet3</strong><br />
<strong>no shut</strong></p>
<p><em>! This is the WAN interface with static IP</em><strong></strong><br />
<strong>interface FastEthernet 4 </strong><br />
<strong>no shut</strong><br />
<strong>ip address 100.100.100.1 255.255.255.0</strong><br />
<strong>ip nat outside </strong></p>
<p><em>! Configure NAT. All internal hosts will be nated on the WAN interface</em><br />
<strong>ip nat inside source list 1 interface fastethernet4 overload</strong><br />
<strong>access-list 1 permit 192.168.1.0 0.0.0.255</strong></p>
<p><em>! Configure static NAT for port redirection</em><br />
<strong>ip nat inside source static tcp 192.168.1.10 80 100.100.100.1 80 extendable</strong></p>
<p><strong>ip route 0.0.0.0 0.0.0.0 100.100.100.2</strong></p>
<p><strong>line vty 0 4</strong><br />
<strong>password somestrongpassword</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/basic-cisco-800-router-configuration-for-internet-access/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Adjusting MSS and MTU on Cisco 800 routers for PPPoE over DSL</title>
		<link>http://www.networkstraining.com/adjusting-mss-and-mtu-on-cisco-800-routers-for-pppoe-over-dsl/</link>
		<comments>http://www.networkstraining.com/adjusting-mss-and-mtu-on-cisco-800-routers-for-pppoe-over-dsl/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 07:00:57 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco 800 Series Routers]]></category>
		<category><![CDATA[adjust-mss]]></category>
		<category><![CDATA[cisco 800 pppoe]]></category>
		<category><![CDATA[mss]]></category>
		<category><![CDATA[mtu]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=520</guid>
		<description><![CDATA[One of the most frequent problems encountered from users of DSL internet connectivity (especially PPPoE DSL service) is when they experience incomplete connections or unreliable data transfers when they communicate with internet servers. A prominent example is when a user accesses a web site and some times it works and some times does not. All [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most frequent problems encountered from users of DSL internet connectivity (especially PPPoE DSL service) is when they experience incomplete connections or unreliable data transfers when they communicate with internet servers. A prominent example is when a user accesses a web site and some times it works and some times does not. All these problems occur mainly because of MTU (Maximum Transmission Unit) and MSS (Maximum Segment Size) values that need to be adjusted on the customer’s broadband DSL router connecting the office to the ISP.<br />
 <br />
In this example we will consider a Cisco 800 series broadband router (e.g 850, 870 etc) connected with a DSL line using PPPoE protocol (you can find out if you are using such a connectivity method from your ISP. It is a very common DSL access method in USA and the rest of the world also).  </p>
<p>Before going any further, let’s put down some numbers regarding packet sizes:</p>
<ul>
<li>Normal Ethernet packets have an MTU value of 1500</li>
<li>PPP protocol uses 8 bytes header size</li>
<li>IP Header is 20 bytes</li>
<li>TCP Header is 20 bytes</li>
</ul>
<p> <br />
So, an Ethernet connected device (PC computer, Web Server etc) by default will send traffic with maximum 1500 bytes (1500 includes all headers plus data).</p>
<p>A broadband Cisco 800 router working with PPPoE DSL connectivity has two interfaces connected: One virtual WAN “<strong>Dialer</strong>” interface facing the ISP (attached on the physical FastEthernet 4 port) and one internal “<strong>Vlan 1</strong>” interface facing the LAN network (see the post here for an example how to configure PPPoE http://www.networkstraining.com/configuring-pppoe-for-cisco-router-520-and-for-850-870/ ).</p>
<p>We need to adjust two values (one for MTU and one for MSS) on each router interface (dialer and vlan1). On the Dialer interface (WAN interface) we need to adjust the MTU value to 1500-8 = <strong>1492</strong> in order to accommodate the 8-bytes PPP header size. On the Vlan1 interface we need to adjust the MSS value to 1500-8-20-20 = <strong>1452</strong> bytes (this is 1500 minus the PPP, TCP, and IP headers). So, always remember that to obtain the MSS value you need to subtract the TCP and IP headers as well. Let’s see a configuration snapshot below:</p>
<p>Cisco800(config)# <strong>interface dialer 1</strong><br />
Cisco800(config-if)# <strong>ip mtu 1492</strong><br />
Cisco800(config-if)# <strong>exit</strong></p>
<p>Cisco800(config)# <strong>interface vlan 1</strong><br />
Cisco800(config-if)# <strong>ip tcp adjust-mss 1452</strong></p>
<p>If you still experience problems with web traffic access, then you can still reduce the MSS value lower than 1452 (some people suggest lowering this value to 1412).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/adjusting-mss-and-mtu-on-cisco-800-routers-for-pppoe-over-dsl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Configure DHCP on Cisco 851 or 871 Router</title>
		<link>http://www.networkstraining.com/how-to-configure-dhcp-on-cisco-851-or-871-router/</link>
		<comments>http://www.networkstraining.com/how-to-configure-dhcp-on-cisco-851-or-871-router/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 10:31:16 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco 800 Series Routers]]></category>
		<category><![CDATA[Cisco Routers]]></category>
		<category><![CDATA[cisco 851]]></category>
		<category><![CDATA[cisco 871]]></category>
		<category><![CDATA[how to configure dhcp]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=491</guid>
		<description><![CDATA[DHCP stands for Dynamic Host Configuration Protocol. Basically it&#8217;s a mechanism which assigns IP addresses to computers dynamically. Usually DHCP is a service running on a server machine in the network in order to assign dynamic IP addresses to hosts. All Cisco 800 series models have the ability to work as DHCP servers, thus assigning [...]]]></description>
			<content:encoded><![CDATA[<p>DHCP stands for Dynamic Host Configuration Protocol. Basically it&#8217;s a mechanism which assigns IP addresses to computers dynamically. Usually DHCP is a service running on a server machine in the network in order to assign dynamic IP addresses to hosts. All Cisco 800 series models have the ability to work as DHCP servers, thus assigning addresses to the internal LAN hosts. Without a DHCP server in the network, you would have to assign IP addresses manually to each host. These manually assigned addresses are also called &#8220;static IP addresses&#8221;.</p>
<p>In this post I will show you how to configure a Cisco 851 or 871 router to work as DHCP server. The same configuration applies for other 800 series models as well.</p>
<p>Router&gt; <strong>enable</strong></p>
<p>Router# <strong>config t</strong></p>
<p><em>! define an IP address pool name and range</em><br />
Router(config)# <strong>ip dhcp pool LANPOOL</strong></p>
<p><em>! define a network range for the addresses that will be assigned</em><br />
Router(dhcp-config)# <strong>network 192.168.1.0 255.255.255.0</strong></p>
<p><em>! define a dns name to assign to clients</em><br />
Router(dhcp-config)# <strong>domain-name mycompany.com</strong></p>
<p><em>! define a default gateway for the clients</em><br />
Router(dhcp-config)# <strong>default-router 192.168.1.1</strong></p>
<p><em>! define the dns server for the clients</em><br />
Router(dhcp-config)# <strong>dns-server 100.100.100.1</strong></p>
<p><em>! define a WINS server if you have one</em><br />
Router(dhcp-config)# <strong>netbios-name-server 192.168.1.2</strong><br />
Router(dhcp-config)# <strong>exit</strong></p>
<p><em>!The following addresses will not be given out to clients</em><br />
Router(config)# <strong>ip dhcp excluded-address 192.168.1.1 192.168.1.10</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/how-to-configure-dhcp-on-cisco-851-or-871-router/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco Router 851 – 871 Interfaces and Basic Configuration</title>
		<link>http://www.networkstraining.com/cisco-router-851-871-interfaces-and-basic-configuration/</link>
		<comments>http://www.networkstraining.com/cisco-router-851-871-interfaces-and-basic-configuration/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 10:01:33 +0000</pubDate>
		<dc:creator>Blog Admin</dc:creator>
				<category><![CDATA[Cisco 800 Series Routers]]></category>
		<category><![CDATA[Cisco Routers]]></category>
		<category><![CDATA[cisco 800]]></category>
		<category><![CDATA[cisco 800 configuration]]></category>
		<category><![CDATA[cisco 800 router]]></category>
		<category><![CDATA[cisco 851]]></category>
		<category><![CDATA[cisco 871]]></category>

		<guid isPermaLink="false">http://www.networkstraining.com/?p=475</guid>
		<description><![CDATA[Cisco manufactures routers for all markets, ranging from SOHO up to large service provider models. The Cisco Router 800 series belongs to the lowest SOHO end. The most popular models in the 800 series are the 850 and 870 broadband access models which come with different types of WAN broadband interfaces (the difference between 850 [...]]]></description>
			<content:encoded><![CDATA[<p>Cisco manufactures routers for all markets, ranging from SOHO up to large service provider models. The Cisco Router 800 series belongs to the lowest SOHO end. The most popular models in the 800 series are the 850 and 870 broadband access models which come with different types of WAN broadband interfaces (the difference between 850 and 870 is that the 870 models have higher throughput, support 10 VPN tunnels instead of 5 and also support VLANs with the proper IOS version). The 851 and 871 are equipped with a 10/100 Ethernet WAN interface which means that your ISP should provide you with a broadband modem offering an Ethernet connection towards the customer.</p>
<p>I&#8217;m getting a lot of questions about the interfaces of 851/871 routers and how they are arranged. I hope this post will clarify some things. The figure below shows the back panel of Cisco Router 851/871.</p>
<p style="text-align: left;"><img class="aligncenter" title="cisco 851 871 router configuration" src="http://www.networkstraining.com/images/cisco-851-871-router-interfaces.jpg" alt="" width="575" height="502" /></p>
<p>Ports FE0 up to FE3 under the LAN group can be used to connect internal computers or maybe to an internal switch to expand the number of internal ports (see points 1,2 in the figure above). These ports are actually Layer 2 switch ports, and not regular Layer 3 router ports. They are assigned by default to VLAN 1. You can create more VLANs and assign each port to a different VLAN (870 series), thus creating extra segmentation for your internal LAN. You can not configure IP addresses directly on the interface ports. The IP address must be configured on the Interface VLAN 1 (we will see example below).</p>
<p>Port FE4 is the WAN interface which must be connected to the ISP DSL broadband modem (see point 3 in the figure above). This port is a normal Layer 3 router port, which means you can configure IP address directly on the interface port.</p>
<p><span style="text-decoration: underline;">Default Configuration for 851 &#8211; 871 Router</span></p>
<p>The Cisco 851 and 871 routers come with some preconfigured parameters (IP addresses etc) which might be in conflict with your current network topology. What I suggest is to erase the factory&#8217;s default startup configuration before you begin configuring your router for the first time. This allows you to start with a clean state and configure the router with all the features you need and leave off any that you don&#8217;t want. Connect with a console cable and after you get a command prompt execute the following:</p>
<p>Router&gt; enable<br />
Router# erase start</p>
<p>After you confirm the command, all the default configuration will be deleted. Power off the router device and then power on again. You will get a prompt as below:</p>
<p><strong><em>Would you like to enter the initial configuration dialog [yes/no]</em></strong></p>
<p>Type <strong>no</strong> and press Enter. This will give you a command prompt (<strong>Router&gt;</strong>) and you are ready to configure your router from scratch.</p>
<p>Type <strong>show run</strong> to see the current configuration which looks like the following:</p>
<p>(some output omitted)</p>
<p>interface FastEthernet0<br />
no ip address<br />
shutdown<br />
!<br />
interface FastEthernet1<br />
no ip address<br />
shutdown<br />
!<br />
interface FastEthernet2<br />
no ip address<br />
shutdown<br />
!<br />
interface FastEthernet3<br />
no ip address<br />
shutdown<br />
!<br />
interface FastEthernet4<br />
no ip address<br />
duplex auto<br />
speed auto</p>
<p>interface Vlan1<br />
no ip address</p>
<p><span style="text-decoration: underline;">Initial Interface Configuration</span></p>
<p>From the above output you can see that FE0 up to FE3 are shutdown and also there are no IP addresses configured to any ports. You need first to enable FE0 to FE4 and then configure IP address under the &#8220;<strong>interface Vlan 1</strong>&#8221; and also under the &#8220;<strong>interface FastEthernet4</strong>&#8221; port. Notice that you <strong><span style="text-decoration: underline;">CAN NOT</span></strong> configure IP addresses under the &#8220;interface FastEthernet0&#8243; up to &#8220;interface FastEthernet3&#8243; ports. Those ports are Layer 2 switch ports and will inherit the IP address you assign under &#8220;interface Vlan1&#8243;.</p>
<p><span style="text-decoration: underline;">Example:</span></p>
<p>Assume that the internal LAN has IP network range 192.168.10.0/24. Also, our ISP has assigned us a static public IP address of  200.200.200.1 . Let&#8217;s see the interface configuration below:</p>
<p>Router(config)# <strong>interface fastethernet 0</strong><br />
Router(config-int)# <strong>no shutdown</strong><br />
Router(config-int)# <strong>exit</strong></p>
<p>Router(config)# <strong>interface fastethernet 1</strong><br />
Router(config-int)# <strong>no shutdown</strong><br />
Router(config-int)# <strong>exit</strong></p>
<p>Router(config)# <strong>interface fastethernet 2</strong><br />
Router(config-int)# <strong>no shutdown</strong><br />
Router(config-int)# <strong>exit</strong></p>
<p>Router(config)# <strong>interface fastethernet 3</strong><br />
Router(config-int)# <strong>no shutdown</strong><br />
Router(config-int)# <strong>exit</strong></p>
<p>Router(config)# <strong>interface fastethernet 4</strong><br />
Router(config-int)# <strong>no shutdown</strong><br />
Router(config-int)# <strong>ip address</strong> <strong>200.200.200.1 255.255.255.252</strong><br />
Router(config-int)# <strong>exit</strong></p>
<p>Router(config)# <strong>interface vlan1</strong><br />
Router(config-int)# <strong>no shutdown</strong><br />
Router(config-int)# <strong>ip address</strong> <strong>192.168.10.1 255.255.255.0</strong><br />
Router(config-int)# <strong>exit</strong></p>
<p>Notice that we configured IP addresses only to <strong>fastethernet 4</strong> and <strong>vlan1</strong>. By default, interfaces fastethernet 0 to 3 are assigned to VLAN1 so anything you connect to those interfaces (internal LAN hosts) will belong to vlan1 network range 192.168.10.0/24 and they must have as default gateway the address 192.168.10.1.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networkstraining.com/cisco-router-851-871-interfaces-and-basic-configuration/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.networkstraining.com @ 2012-02-04 13:09:03 -->
