Configure ipaddress and route entries in /etc/rc.conf file

Martin Alejandro Paredes Sanchez mapsware at prodigy.net.mx
Wed Jun 6 08:01:35 UTC 2007


El Lun 04 Jun 2007, bsenthil escribió:
> Yes, It working fine.. Thanks for your help..
>
> inetd_enable="YES"
> hostname="test.abc.com"
> ifconfig_fxp0="inet 192.168.110.14  netmask 255.255.255.0"
> ifconfig_fxp1="inet 192.168.111.14  netmask 255.255.255.0"
> hostname="test.abc.com"
> static_routes="net1 net2"
>
> route_net1="-net 10.1.1.1/24 *fxp0*"  (Error ...)
>
> I am not configure any default router entries . But i want to redirect
> all 10.1.1.1/24 packets through  fxp0.

short answer:

route_net1="-net 10.1.1.0/24 192.168.110.1"

Replace the ip 192.168.110.1 with the router in the LAN 192.168.110.0/24

Long answer:

so, you are connected to 2 LANs:

192.168.110.0/24
192.168.111.0/24

And there exist another LAN

10.1.1.0/24

when you configure the interface fxp0:

ifconfig_fxp0="inet 192.168.110.14  netmask 255.255.255.0"

You are adding an entry in the routing table like this:

"-net 192.168.110.0/24 192.168.110.14"

Since you want to transmit all the trafic to the LAN 10.1.1.0/24 by the 
interface fxp0 (connected to the LAN 192.168.110.0/24), there should exist 
some connection betwen these 2 LANs (controled by a router), all you have to 
say is that the LAN 10.1.1.0/24 is reached by the router 192.168.110.X

route_net1="-net 10.1.1.0/24 192.168.110.X"

maps


More information about the freebsd-questions mailing list