What/how can you open the VNC port on the Pix to allow access into a server, we want to connect securely and i know VNC is not the best at all, but this is a quick fix i guess.
yeah, i dont want to open up the box to all traffic, only certain IP from the outside so I can atleast get in and
check some servers, how can i do that ??
If you only want the one port open to a certain box for VNC access, and you stated that you know the outside IP address then you would have an access-list that looks something like this...
This will forward all request to port 5900 to inside IP address 192.168.0.10:
static (inside,outside) tcp 206.118.72.54 5900 192.168.0.10 5900 netmask 255.255.255.0 0 0
Llets say you have 2 servers you want to admin, you can use a different port using PAT. This will come into the system using port 5901 and translate it to 5900:
static (inside,outside) tcp 206.118.72.54 5901 192.168.0.10 5900 netmask 255.255.255.0 0 0
you must also use an ACL:
access-list fromoutside permit tcp any any eq 5901
access-list fromoutside permit tcp any any eq 5900
access-group fromoutside in interface outside
this should do it. if you have more questions let me know
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.