Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Telnet Access to Server Behind Pix Firewall.....

Status
Not open for further replies.

franksoprano

Technical User
Apr 13, 2002
249
0
0
US
How do I enable Telnet access to my server behind the Pix firewall?
 
Create a rule on the PIX allowing port 23 to the server behind the PIX.

Chris.
************************
Chris Andrew, CCNA
chrisac@gmx.co.uk
************************
 
To add to Chris' answer, try this:

access-list acl_out permit tcp any host XX.XX.XX.XX eq 23

(This will allow any host to access your outside interface with tcp 23.. You may want to limit that by replacing 'any host' with an IP and Netmask of your choosing.)

static (inside,outside) tcp interface 23 YY.YY.YY.YY 23 netmask 255.255.255.255 0 0

access-group acl_out in interface outside

WHERE XX.XX.XX.XX = outside IP
YY.YY.YY.YY = inside IP of the box you want to telnet to.

If you don't NEED to telnet to your box, I would not recommend opening this port.

Good Luck! --
Ed McLaughlin, MCP
Senior Software Engineer
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top