Follow these instructions to configure the BrickStor's default gateway.
You can only have one gateway so it is important to understand if your admin network is isolated from your data network and if you are going to try and have routable network traffic on your data (storage network). Typically the gateway is used by the admin interface so that admins can connect to the administrative interface from any network while the data network is not routable and just a switched network dedicated to data with clients in that switched network. If DHCP is configured on admin0 interface this file won't be populated and will use the gateway provided to admin0 via DHCP.
-
Set the permanent default router with:
# vi /etc/defaultrouter
Insert just the IP of the default gateway.
-
Or use echo to write to the file
# echo "10.12.1.254" > /etc/defaultrouter
-
If possible reboot the system for the changes to take affect. If a reboot is not possible use the following command to set the default gateway immediately:
-
This will not survive a reboot.
# route –p add default x.x.x.x
-
To Confirm your gateway is set properly
Run:
# netstat -rn |