|
|
| Copperjet 810 Modem |
|
|
|
| Written by Bart Dorlandt |
| Wednesday, 27 September 2006 21:55 |
Default SettingsThe default setting for my router is a routing modem. The DSL interface of the router gets the External IP address. The Lan interface has 172.19.3.1/24. It also has DHCP server enabled. This way a client gets an IP address within the 172.19.3.x/24 range and is able to communicate with the internet instantly. Change to BridgeI want to change the setup to a bridge because I want my server (OpenBSD) to get the external IP adres directly. This way I don't have to NAT or do some other spooky things.
Manageble bridgeI use OpenBSD as my server. I have configured the external interface as DHCP client. $ cat /etc/hostname.xl0 dhcp NONE NONE NONE up rtsol
And I also edited my dhclient.conf a bit, as follows: initial-interval 1; send host-name "dipsy"; supersede domain-name "bamweb.nl"; prepend domain-name-servers 127.0.0.1; request subnet-mask, broadcast-address, routers, domain-name, domain-name-servers, host-name; I had configured an alias on my external NIC (xl0), this way I can manage my bridge. To do this type in the following: To have this at startup edit the /etc/hostname.<interface> (in my case hostname.xl0) # ifconfig xl0 inet alias 172.19.3.10 netmask 255.255.255.0 $ cat /etc/hostname.xl0 dhcp NONE NONE NONE inet alias 172.19.3.10 255.255.255.0 NONE up rtsol After this you can save your config also. Otherwise you'll have to connect to your moden with a static IP within the range 172.19.3.x/24 |
| Last Updated on Monday, 16 July 2007 20:49 |
| Related items: |
|---|
|


