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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PIX 515:HOWTO telnet from DMZ into INSIDE?

Status
Not open for further replies.

dasa123

IS-IT--Management
Sep 26, 2002
32
DE
Dear experts,

we are using CISCO's PIX 515 and want to telnet from
a DMZ system (IP 149.243.236.67) to a Sun server lo-
cated in the INSIDE region (IP 149.243.236.34):



149.243.236.98 (OUTSIDE)
------------------------ 149.243.236.32/27
| PIX 515 | 149.243.236.33 (INSIDE)
| PAT: 149.243.236.99 | ------------------------- Sun system
| |
149.243.236.34
------------------------
149.243.236.64/27
149.243.236.65 (DMZ)
|
|
|
Client
149.243.236.67


And this is our PIX configuration:
===================================

nameif ethernet0 outside security0
nameif ethernet1 inside security100
nameif ethernet2 dmz security50
enable password xxxxxxxxx
passwd xxxxxxxx
hostname esofw1
domain-name eso-io.com
fixup protocol ftp 21
fixup protocol http 80
fixup protocol h323 1720
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol sip 5060
fixup protocol skinny 2000
names
access-list acl_out permit tcp any host 149.243.236.100 eq www
access-list acl_dmz permit tcp any host 149.243.236.93 eq telnet
pager lines 24
logging on
interface ethernet0 auto shutdown
interface ethernet1 auto
interface ethernet2 auto
mtu outside 1500
mtu inside 1500
mtu dmz 1500
ip address outside 149.243.236.98 255.255.255.224
ip address inside 149.243.236.33 255.255.255.224
ip address dmz 149.243.236.65 255.255.255.224
ip audit info action alarm
ip audit attack action alarm
no failover
failover timeout 0:00:00
failover poll 15
failover ip address outside 0.0.0.0
failover ip address inside 0.0.0.0
failover ip address dmz 0.0.0.0
pdm history enable
arp timeout 14400
global (outside) 1 149.243.236.99
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
nat (dmz) 1 0.0.0.0 0.0.0.0 0 0
static (dmz,outside) 149.243.236.100 149.243.236.67 netmask
255.255.255.255 0 0
static (inside,dmz) 149.243.236.93 149.243.236.34 netmask
255.255.255.255 0 0
access-group acl_out in interface outside
access-group acl_dmz in interface dmz
route outside 0.0.0.0 0.0.0.0 149.243.236.97 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h323
0:05:00 sip 0:30:00 sip_media 0:02:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server RADIUS protocol radius
http server disable
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
no sysopt route dnat
telnet timeout 5
ssh timeout 5
terminal width 80
Cryptochecksum:750ecce18217a9f259d70f9a79d7d60f

As I told you (from the client 149.243.236.67)

%telnet 149.243.236.34

is not working, the "debug icmp trace" says:

Deny inbound tcp src dmz:149.243.236.67/45112 dst
inside:149.243.236.34/23 by access-group "acl_dmz"

What's wrong here in my config?

Many thanks in advance for tips, glues!

Rainer Blaes
Astrium GmbH, Bremen(Germany)
 
Your problem is in this acl:

access-list acl_dmz permit tcp any host 149.243.236.93 eq telnet

But you are telneting to:

%telnet 149.243.236.34


This isn't allowed by your acl!

Andy


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top