<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How do I enable http on my Cisco 1841 router?</title>
	<atom:link href="http://www.routersguide.com/blog/cisco-router/how-do-i-enable-http-on-my-cisco-1841-router/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.routersguide.com/blog/cisco-router/how-do-i-enable-http-on-my-cisco-1841-router/</link>
	<description>This blog will tell you everything that you need to know about Cisco, Juniper, Netgear, Linksys, and Foundry wireless routers.</description>
	<lastBuildDate>Sat, 31 Jul 2010 04:10:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: C.T.</title>
		<link>http://www.routersguide.com/blog/cisco-router/how-do-i-enable-http-on-my-cisco-1841-router/comment-page-1/#comment-6226</link>
		<dc:creator>C.T.</dc:creator>
		<pubDate>Sun, 21 Jun 2009 23:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.routersguide.com/blog/cisco-router/how-do-i-enable-http-on-my-cisco-1841-router/#comment-6226</guid>
		<description>log in to the device via telnet or ssh. enter enable mode, then global configuration mode, and then enable the http service by issuing the command &quot;ip http server&quot; and then &quot;ip http secure-server&quot;

After doing that save your configuration and you should be good to go.</description>
		<content:encoded><![CDATA[<p>log in to the device via telnet or ssh. enter enable mode, then global configuration mode, and then enable the http service by issuing the command &quot;ip http server&quot; and then &quot;ip http secure-server&quot;</p>
<p>After doing that save your configuration and you should be good to go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lanwanprofessional.com</title>
		<link>http://www.routersguide.com/blog/cisco-router/how-do-i-enable-http-on-my-cisco-1841-router/comment-page-1/#comment-6227</link>
		<dc:creator>Lanwanprofessional.com</dc:creator>
		<pubDate>Sun, 21 Jun 2009 23:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.routersguide.com/blog/cisco-router/how-do-i-enable-http-on-my-cisco-1841-router/#comment-6227</guid>
		<description>First thing to do would be to make sure it is enabled by:

Router# configure terminal
Router(config)# ip http server
Router(config)# ip http secure-server
Router(config)# ip http authentication local
Router(config)# ip http timeout-policy idle 600 life 86400 requests 10000

If the router supports HTTPS, the HTTPS server will be enabled. If not, the HTTP server will be enabled. HTTPS is supported in all images that support the Crypto/IPSec feature set, starting from Cisco IOS release 12.25(T).

Afer that make sure you have user with maximum privileges created, it will be used to login via SDM, for example:

Router(config)# username yourname privilege 15 secret 0 yourpassword

Enable SSH and telnet:

Router(config)# line vty 0 4
Router(config-line)# privilege level 15
Router(config-line)# login local
Router(config-line)# transport input telnet ssh
Router(config-line)# exit

Router(config)# logging buffered 51200 warning

If all this worked, try to do the following:

1. Ping from router to the station that you are using with web browser, and make sure you have connectivity

2. Ping from the station to the router and make sure you have connectivity.

If all this worked does not mean that is all you have to check. The traffic between your browser and router may be filtered. Look at the network diagram and check if there is no firewall between them, (ISA etc.) Also check your router access lists and make sure you do not block traffic on port 80 (http) and 443 (https).

If all this fail, save your router configuration to the notepad, reset your router to defaults and simply start from scratch.





http://www.cisco.com/en/US/products/sw/secursw/ps5318/prod_installation_guide09186a00803e4727.html#wp70999</description>
		<content:encoded><![CDATA[<p>First thing to do would be to make sure it is enabled by:</p>
<p>Router# configure terminal<br />
Router(config)# ip http server<br />
Router(config)# ip http secure-server<br />
Router(config)# ip http authentication local<br />
Router(config)# ip http timeout-policy idle 600 life 86400 requests 10000</p>
<p>If the router supports HTTPS, the HTTPS server will be enabled. If not, the HTTP server will be enabled. HTTPS is supported in all images that support the Crypto/IPSec feature set, starting from Cisco IOS release 12.25(T).</p>
<p>Afer that make sure you have user with maximum privileges created, it will be used to login via SDM, for example:</p>
<p>Router(config)# username yourname privilege 15 secret 0 yourpassword</p>
<p>Enable SSH and telnet:</p>
<p>Router(config)# line vty 0 4<br />
Router(config-line)# privilege level 15<br />
Router(config-line)# login local<br />
Router(config-line)# transport input telnet ssh<br />
Router(config-line)# exit</p>
<p>Router(config)# logging buffered 51200 warning</p>
<p>If all this worked, try to do the following:</p>
<p>1. Ping from router to the station that you are using with web browser, and make sure you have connectivity</p>
<p>2. Ping from the station to the router and make sure you have connectivity.</p>
<p>If all this worked does not mean that is all you have to check. The traffic between your browser and router may be filtered. Look at the network diagram and check if there is no firewall between them, (ISA etc.) Also check your router access lists and make sure you do not block traffic on port 80 (http) and 443 (https).</p>
<p>If all this fail, save your router configuration to the notepad, reset your router to defaults and simply start from scratch.</p>
<p><a href="http://www.cisco.com/en/US/products/sw/secursw/ps5318/prod_installation_guide09186a00803e4727.html#wp70999" rel="nofollow">http://www.cisco.com/en/US/products/sw/secursw/ps5318/prod_installation_guide09186a00803e4727.html#wp70999</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
