OpenBSD Set / Change Default Gateway
Q. How do I change or set a default gateway under OpenBSD operating system?
A. You need to add / edit /etc/mygate file which contains the address of the gateway host / router. The gateway is added to the routing tables by the route utility while booting the system.
The file may contain gateway addresses for both IPv4 and IPv6 networks: in dotted quad notation for IPv4 (e.g. 192.168.1.254) or in colon notation for IPv6 (e.g. 2001:1234:5678::1). Each address must be specified on a separate line (new line). If more than one address of a specific family is found, only the first is used - all other addresses of that family are ignored.
/etc/mygate is processed after all interfaces have been configured. If any hostname.iface files contain dhcp directives, IPv4 entries in /etc/mygate will be ignored. If they contain rtsol directives, IPv6 entries will be ignored.
View Current Routing Table
Type the following commands to view current routing table:
# route show
# route -n show
# netstat -r
Change or Add Gateway IP address
Open /etc/mygate file:
# vi /etc/mygate
Append / modify new IP:
192.168.1.254
Save and close the file.
Add route from a command prompt
Adding routes is very simple with the "route add" command. All you need to know is the network block you want to route, the netmask for that block, and the IP address you want them routed to:
# route add 192.168.1.0 -netmask 255.255.255.0 192.168.1.254
OpenBSD delete Route
Type the following command:
# route delete 192.168.1.0 -netmask 255.255.255.0
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Linux / UNIX FAQ:
- Openbsd change, add or display default gateway
- OpenBSD Restart Networking Service
- OpenBSD Install Ports Collection
- FreeBSD Set a Default Route / Gateway
- OpenBSD Change Hostname
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Please do not use the comment form to ask for help / question. Ask your question on the excellent Linux tech support forum. Thank you very much for stopping by our site!
Tags: /etc/mygate, change default gateway, colon notation, gateway addresses, gateway host, ipv4 and ipv6, ipv6 networks, netmask, netstat, route add, route command, routing table ~ Last updated on: May 8, 2008



Recent Comments
Today ~ 2 Comments
Today ~ 3 Comments
Today ~ 2 Comments
Today ~ 18 Comments
Today ~ 15 Comments