cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2299
Views
0
Helpful
1
Replies

Cisco 2950 http server access

Star2BarryN
Level 1
Level 1

I can't seem to access the http page on the switch. I keep getting "server has dropped connection".

IOS (tm) C2950 Software (C2950-I6K2L2Q4-M), Version 12.1(22)EA11, RELEASE SOFTWARE (fc2)

Some relevant sections of my config.

username admin privilege 15 password 0 REDACTED
interface Vlan1
 ip address 192.168.0.253 255.255.255.0
 ip http server
 ip http authentication local
 ip http path flash:

What am I missing to make this work? I have ssh and local console access.

1 Accepted Solution

Accepted Solutions

Star2BarryN
Level 1
Level 1

I solved it myself after I found this post on another web site...


Ok, I got it. It's working.

When I was setting up SSH, I applied "transport input ssh" to line vty 0 15, which apparently means ONLY ssh. :/ When Frennzy said to try to telnet on port 80, I got an immediate rejection. Then I remembered the transport command, went back and set it to "all". Then telnet worked, and so did the web interface.

So I ran:

config t
line vty 0 15
transport input all
exit
exit
wr mem

and it works now.

View solution in original post

1 Reply 1

Star2BarryN
Level 1
Level 1

I solved it myself after I found this post on another web site...


Ok, I got it. It's working.

When I was setting up SSH, I applied "transport input ssh" to line vty 0 15, which apparently means ONLY ssh. :/ When Frennzy said to try to telnet on port 80, I got an immediate rejection. Then I remembered the transport command, went back and set it to "all". Then telnet worked, and so did the web interface.

So I ran:

config t
line vty 0 15
transport input all
exit
exit
wr mem

and it works now.