Link to home
Start Free TrialLog in
Avatar of cuadmin
cuadmin

asked on

Pix 501 - Cannot access web interface

I've configured my Pix501 with a console cable and am now finished and would like to put it into testing. I assume I still should be able to Cisco PIX Device Manager via https, but for some reason I cannot.
Any idea why? Do I have to 'turn it on'?

Thanks!
Avatar of mkielar
mkielar
Flag of United States of America image

Yes, it needs to be turned on. Look for code similar to this:
http enable <address-range> <address netmask> inside

Where if you wanted any pc on the 192.168.1.0 255.255.255.0 network to be able to web access the command would be:
http enable 192.168.1.0 255.255.255.0 inside

Or if you wanted just one particular pc to be able to access, it might look like this:
http enable 192.168.1.200 255.255.255.255 inside
Actually here's more:
http server enable
http xxx.xxx.xxx.xxx 255.xxx.xxx.xxx [outside|inside]
pdm location xxx.xxx.xxx.xxx 255.255.255.255 [outside | inside]
The http server enable turns the web server on.
ASKER CERTIFIED SOLUTION
Avatar of mkielar
mkielar
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cuadmin
cuadmin

ASKER

Thanks a bunch!