Link to home
Start Free TrialLog in
Avatar of Mystical_Ice
Mystical_Ice

asked on

What do i need on this PIX to allow telnet traffic inbound?

Hi,

I just set up my home network - i have a cisco pix 506E that's connected (via a static IP) to a cable modem.  Internally, all my clients connect to the PIX, which is providing DHCP, etc.
Internal network is 172.17.2.0 /24.

PIX internal address is 172.17.2.254
PIX external address is, for argument's sake, 1.1.1.1

Two things i want to be able to do:  

1) I need to allow FTP traffic inbound to a certain IP address (172.17.2.250).  Over time, i'm going to need to allow certain other traffic types to different internal IPs (for instance I may need web traffic on port 80 to go to 172.17.2.251, etc).

I put the following commands in the PIX, but for some reason the computer i was on suddenly lost internet connection (bizarre, but from another computer on another internet connection i was able to access the FTP server!).  The commands were:

static (inside,outside) 1.1.1.1 172.17.2.250 netmask 255.255.255.255 0 0
conduit permit tcp host 1.1.1.1 eq ftp-data any
conduit permit tcp host 1.1.1.1 eq ftp any

2) I need to be able to ping the PIX from outside, and be able to ping outside IPs from inside the network.  I haven't tested pinging the PIX from outside the network, but i do know that i'm unable to ping outside addresses from inside the network.

Thanks everyone for your help in advance! Much appreciated!
I'm including the PIX config...


: Saved
:
PIX Version 6.3(5)
interface ethernet0 auto
interface ethernet1 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password 56afLgSQrgMIa4xm encrypted
passwd 56afLgSQrgMIuOxm encrypted
hostname hostname
domain-name domain.local
clock timezone CST -6
clock summer-time CDT recurring
fixup protocol dns maximum-length 512
fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol sip 5060
fixup protocol sip udp 5060
fixup protocol skinny 2000
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol tftp 69
names
access-list inside_access_in permit ip any any
pager lines 24
logging timestamp
logging buffered informational
logging history warnings
logging queue 1024
logging device-id hostname
mtu outside 1500
mtu inside 1500
ip address outside 1.1.1.1 255.255.255.252
ip address inside 172.17.2.254 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
no pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
access-group inside_access_in in interface inside
rip inside passive version 2
route outside 0.0.0.0 0.0.0.0 1.1.1.2 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h225 1:00:00
timeout h323 0:05:00 mgcp 0:05:00 sip 0:30:00 sip_media 0:02:00
timeout sip-disconnect 0:02:00 sip-invite 0:03:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server TACACS+ max-failed-attempts 3
aaa-server TACACS+ deadtime 10
aaa-server RADIUS protocol radius
aaa-server RADIUS max-failed-attempts 3
aaa-server RADIUS deadtime 10
aaa-server LOCAL protocol local
http server enable
http 0.0.0.0 0.0.0.0 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
telnet 0.0.0.0 0.0.0.0 inside
telnet timeout 60
ssh 0.0.0.0 0.0.0.0 outside
ssh timeout 5
console timeout 0
dhcpd address 172.17.2.100-172.17.2.150 inside
dhcpd dns 1.1.1.3 1.1.1.4
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd enable inside
terminal width 80
Cryptochecksum:cd46612d61399d2d482915035f366724
: end

Open in new window

Avatar of Mystical_Ice
Mystical_Ice

ASKER

Just noticed i posted this to the Voice over IP section by mistake.

Moderator - if you could, please delete this question from that zone - it belongs in the other two zones i selected - "network routers" and "networking hardware firewalls"

Thanks - and sorry
ASKER CERTIFIED SOLUTION
Avatar of Les Moore
Les Moore
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
Much appreciated - that did the trick.
One thing - still not able to ping OUT though...i can't ping google.com, can't ping 4.2.2.2, 8.8.8.8, etc.
try a conduit
conduit permit icmp any any
still no go :(
And this entry is in the acl?
access-list outside_access_in permit icmp any any

May sound counter-intuitive, but try this:
 no access-group inside_access_in in interface inside

actually i take it back; when i tested it last i was on a different connection - d'oh...

working great.

curious though, why would removing that access-group from the inside interface have fixed it?