[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: default gateway



On Wed, 12 Mar 2003, Pavlos Parissis wrote:

> Hello all,
> I am looking for the file that I have to modify in order to have static route
> enabled.
> I add the gateway manually with route add -net default gw 192.168.100.1
> and I would like to find the config file.
> I am using woody 3.0.r1,any ideas?
>
> Pavlos
>

If the only static route you want is the default route, then it goes into
'/etc/network/interfaces' with the stanza that configures the interface.
For example, with the following interfaces file, the 'gateway' line
specifies that a default gateway that will be added to the routing table
through the eth0 network interface. The Debian network initialization
script (/etc/init.d/network) will create the default route as you have
been doing manually when the 'gateway' line is in the interface
definition. So in this example a default route to the router "192.168.1.1"
would be added to the routing table when the network interfaces are
initialized.

--------------------------------------------------------------------------
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
# automatically added when upgrading
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
	address 192.168.1.175
	netmask 255.255.255.0
	network 192.168.1.0
	broadcast 192.168.1.255
	gateway 192.168.1.1


---------------------------------------------------------------------------




Reply to: