####### Linux ##########
ต้องการที่จะเปลี่ยน ip ผ่าน command ครับ
#####check interface
#mii-tools
#route del default gw 10.x.x.x
#route add default gw 192.x.x.x
หรือต้องการให้ network บางตัว route ออกไปคนละ gateway ก็
#route add -net 10.3.0.0/16 gw 10.3.0.1
##############################
##### FREEBSD #######
ถ้าเป็น default gateway แอดด้วย command นี้
#route add default -gateway 10.x.x.x
แต่ถ้ามี subnet ของวงนั้นๆ ด้วย แอดด้วย command
route delete -net 0.0.0.0
route add -net 0.0.0.0 -gateway 192.x.x.x
#######################