Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Cisco > PIX 506E static route problem

Reply
Thread Tools

PIX 506E static route problem

 
 
tfanabe
Guest
Posts: n/a
 
      10-31-2006
Hi all,

My name is Giulian and I'm writing from Italy.
I have a problem with PIX 506E 6.3(5).

The outside interface has a public ip 84.18.156.23/29
The inside interface has a private ip 10.10.45.254/24
The local lan use 10.10.45.0/24 address and default gateway is the
inside interface ip.

In the inside zone I have a router with ip 10.10.45.253 that is
connect with Point-to-Point to another network with 10.10.46.0/24
address.

I would like to connect with pc of the 10.10.46.0/24 network through
inside router and so I have insert a route static in the pix
configuration like:

route inside 10.10.46.0 255.255.255.0 10.10.45.253 1

My problem concern that this configuration doesn't running....
For more security I have try to connect with cross cable to the inside
router and I can ping the remote pc of 10.10.46.0/24 lan.

Any idea?
Thanking in advance and sorry for my english.

Giulian

 
Reply With Quote
 
 
 
 
Jyri Korhonen
Guest
Posts: n/a
 
      10-31-2006
"tfanabe" <> wrote:

> I have a problem with PIX 506E 6.3(5).
>
> The outside interface has a public ip 84.18.156.23/29
> The inside interface has a private ip 10.10.45.254/24
> The local lan use 10.10.45.0/24 address and default gateway is the
> inside interface ip.
>
> In the inside zone I have a router with ip 10.10.45.253 that is
> connect with Point-to-Point to another network with 10.10.46.0/24
> address.


PIX doesn't give ICMP redirect. You have to change your
configuration so that the default gateway is the router.

 
Reply With Quote
 
 
 
 
George W. Bush
Guest
Posts: n/a
 
      10-31-2006
tfanabe wrote:
> Hi all,
>
> My name is Giulian and I'm writing from Italy.
> I have a problem with PIX 506E 6.3(5).
>
> The outside interface has a public ip 84.18.156.23/29
> The inside interface has a private ip 10.10.45.254/24
> The local lan use 10.10.45.0/24 address and default gateway is the
> inside interface ip.
>
> In the inside zone I have a router with ip 10.10.45.253 that is
> connect with Point-to-Point to another network with 10.10.46.0/24
> address.
>
> I would like to connect with pc of the 10.10.46.0/24 network through
> inside router and so I have insert a route static in the pix
> configuration like:
>
> route inside 10.10.46.0 255.255.255.0 10.10.45.253 1
>
> My problem concern that this configuration doesn't running....
> For more security I have try to connect with cross cable to the inside
> router and I can ping the remote pc of 10.10.46.0/24 lan.
>
> Any idea?
> Thanking in advance and sorry for my english.
>
> Giulian
>


If you add the route manually on the workstation not the pix does it
traverse the point to point link? If not then you might have ACL's
preventing traffic across the link. The statement you have IMO looks fine.

For example on a windows PC in a command prompt type:

route add 10.10.46.0 MASK 255.255.255.0 10.10.45.253

In *NIX

route add -net 10.10.46.0 netmask 255.255.255.0 gw 10.10.45.253 dev eth0


HTH
 
Reply With Quote
 
CK
Guest
Posts: n/a
 
      10-31-2006
>From your query i understood
Outside IP Inside IP Outside IP
Inside IP
84.**.***.23---PIX---10.10.45.254/24------------10.10.45.254/24--Router--10.10.46.0/24

>>route inside 10.10.46.0 255.255.255.0 10.10.45.253 1

It should work

can you post your config

CK


tfanabe wrote:
> Hi all,
>
> My name is Giulian and I'm writing from Italy.
> I have a problem with PIX 506E 6.3(5).
>
> The outside interface has a public ip 84.18.156.23/29
> The inside interface has a private ip 10.10.45.254/24
> The local lan use 10.10.45.0/24 address and default gateway is the
> inside interface ip.
>
> In the inside zone I have a router with ip 10.10.45.253 that is
> connect with Point-to-Point to another network with 10.10.46.0/24
> address.
>
> I would like to connect with pc of the 10.10.46.0/24 network through
> inside router and so I have insert a route static in the pix
> configuration like:
>
> route inside 10.10.46.0 255.255.255.0 10.10.45.253 1
>
> My problem concern that this configuration doesn't running....
> For more security I have try to connect with cross cable to the inside
> router and I can ping the remote pc of 10.10.46.0/24 lan.
>
> Any idea?
> Thanking in advance and sorry for my english.
>
> Giulian


 
Reply With Quote
 
Walter Roberson
Guest
Posts: n/a
 
      10-31-2006
In article <>,
tfanabe <> wrote:
>I have a problem with PIX 506E 6.3(5).


>The inside interface has a private ip 10.10.45.254/24
>The local lan use 10.10.45.0/24 address and default gateway is the
>inside interface ip.


>In the inside zone I have a router with ip 10.10.45.253 that is
>connect with Point-to-Point to another network with 10.10.46.0/24
>address.


>I would like to connect with pc of the 10.10.46.0/24 network through
>inside router and so I have insert a route static in the pix
>configuration like:


> route inside 10.10.46.0 255.255.255.0 10.10.45.253 1


Where are you starting from when you want to connect to that pc on
10.10.46/24 ? If you are starting from outside, then the route
statement you give should be fine, provided that the 10.10.46/24
network is nat'd (for traffic that is outgoing only) or static'd
to a public IP if something on 10.10.46/24 is acting as a server
[a case that would require appropriate outside ACLs.]

But if you are starting from something on your 10.10.45/24 network
and expecting that hosts there will send the packet to the PIX
(because it is their default gateway) and that the PIX will forward it
over to 10.10.45.253 for transport to 10.10.46/24, then like the
other poster said, that is not going to work: the PIX does not
send out ICMP redirects and will just drop the packets.
 
Reply With Quote
 
mcaissie
Guest
Posts: n/a
 
      10-31-2006

> >From your query i understood

> Outside IP Inside IP Outside IP
> Inside IP
> 84.**.***.23---PIX---10.10.45.254/24------------10.10.45.254/24--Router--10.10.46.0/24
>
>>>route inside 10.10.46.0 255.255.255.0 10.10.45.253 1

> It should work



No it should not . This route is only for packets entering the PIX on the
outside interface. It can then be routed on the inside through the gateway
mentionned
in the statement.Or if you ping from the PIX itself as tfanabe did, it will
work.

But if the packet comes from the inside it will not be routed back on the
inside.
The PIX doesn't allow a packet to leave using the same interface it came
from.

The PIX is not a router , unfortunately tfanabe you will need another device
to accomplish what you are trying to do.












>
> can you post your config
>
> CK
>
>
> tfanabe wrote:
>> Hi all,
>>
>> My name is Giulian and I'm writing from Italy.
>> I have a problem with PIX 506E 6.3(5).
>>
>> The outside interface has a public ip 84.18.156.23/29
>> The inside interface has a private ip 10.10.45.254/24
>> The local lan use 10.10.45.0/24 address and default gateway is the
>> inside interface ip.
>>
>> In the inside zone I have a router with ip 10.10.45.253 that is
>> connect with Point-to-Point to another network with 10.10.46.0/24
>> address.
>>
>> I would like to connect with pc of the 10.10.46.0/24 network through
>> inside router and so I have insert a route static in the pix
>> configuration like:
>>
>> route inside 10.10.46.0 255.255.255.0 10.10.45.253 1
>>
>> My problem concern that this configuration doesn't running....
>> For more security I have try to connect with cross cable to the inside
>> router and I can ping the remote pc of 10.10.46.0/24 lan.
>>
>> Any idea?
>> Thanking in advance and sorry for my english.
>>
>> Giulian

>



 
Reply With Quote
 
CK
Guest
Posts: n/a
 
      11-01-2006
What if we NAT the IPs



mcaissie wrote:
> > >From your query i understood

> > Outside IP Inside IP Outside IP
> > Inside IP
> > 84.**.***.23---PIX---10.10.45.254/24------------10.10.45.254/24--Router--10.10.46.0/24
> >
> >>>route inside 10.10.46.0 255.255.255.0 10.10.45.253 1

> > It should work

>
>
> No it should not . This route is only for packets entering the PIX on the
> outside interface. It can then be routed on the inside through the gateway
> mentionned
> in the statement.Or if you ping from the PIX itself as tfanabe did, it will
> work.
>
> But if the packet comes from the inside it will not be routed back on the
> inside.
> The PIX doesn't allow a packet to leave using the same interface it came
> from.
>
> The PIX is not a router , unfortunately tfanabe you will need another device
> to accomplish what you are trying to do.
>
>
>
>
>
>
>
>
>
>
>
>
> >
> > can you post your config
> >
> > CK
> >
> >
> > tfanabe wrote:
> >> Hi all,
> >>
> >> My name is Giulian and I'm writing from Italy.
> >> I have a problem with PIX 506E 6.3(5).
> >>
> >> The outside interface has a public ip 84.18.156.23/29
> >> The inside interface has a private ip 10.10.45.254/24
> >> The local lan use 10.10.45.0/24 address and default gateway is the
> >> inside interface ip.
> >>
> >> In the inside zone I have a router with ip 10.10.45.253 that is
> >> connect with Point-to-Point to another network with 10.10.46.0/24
> >> address.
> >>
> >> I would like to connect with pc of the 10.10.46.0/24 network through
> >> inside router and so I have insert a route static in the pix
> >> configuration like:
> >>
> >> route inside 10.10.46.0 255.255.255.0 10.10.45.253 1
> >>
> >> My problem concern that this configuration doesn't running....
> >> For more security I have try to connect with cross cable to the inside
> >> router and I can ping the remote pc of 10.10.46.0/24 lan.
> >>
> >> Any idea?
> >> Thanking in advance and sorry for my english.
> >>
> >> Giulian

> >


 
Reply With Quote
 
Walter Roberson
Guest
Posts: n/a
 
      11-01-2006
In article <. com>,
CK <> wrote:

>What if we NAT the IPs


There is no point in us answering that question until you answer
the question I posed in my response: where are the packets
starting from that you are trying to get through to the second
subnet?

Repeating what I said before: if the packets are coming from
outside, there is no problem. If the packets are coming from
inside then there is NO way you are going to be able to get your
PIX 506E to pass the traffic back to the same interface.

If the packets are originating "inside", then change the
default gateway of all of those hosts to be the IP address of the
inside router, so that packets going from inside to the other
inside subnet do not pass through the PIX.

If you can't do that for some reason, your only other hope
is that you are using an 802.1Q compatible switch and that you
implement two "logical interfaces" on the same physical interface,
with different IP subnets for each. The PIX 506E running 6.3(3) or
later [such as your 6.3(5)] *will* forward between different IP subnets
on the same physical interface, if those subnets are on different
"logical interfaces". Which has its own drawbacks: the two
logical interfaces will have to be at different security levels
than each other and you will need to define nat/global/access-group
and so on.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
What is the default precedence: local-route, static-route,OSPF-route? ilan.berco@gmail.com Cisco 9 08-07-2008 05:42 PM
Need to route SMTP traffic through static interface (not default route) perimere Cisco 0 03-27-2007 09:19 PM
Static route on PIX 506e ingo@tiede.it Cisco 5 01-18-2006 03:17 PM
Can netwrok run static route and dynamic route the same time? Bruce Cao Cisco 3 12-06-2005 02:15 AM
Can't Route Through Cisco EasyVPN on PIX 506e John Balch Cisco 3 09-24-2004 08:57 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57