Vmware Esxi 6.0 Route ekleme/silme | How to add/remove static route on vmware esxi 6.0
Vmware Esxi 6.0’da statik olarak Route ekleme/silme | How to add/remove static route on vmware esxi 6.0
Statik route eklemek için aşağıdaki komutu kullanabiliriz.
- esxcli network ip route ipv4 add --gateway 10.4.16.30 --network 10.1.201.140/32
Daha önce girilmiş olan route tablosunu aşağıdaki şekilde görüntüleriz.
- esxcli network ip route ipv4 list
eklenmiÅŸ olan bir route’u silmek için ise aÅŸağıdaki ÅŸekilde komut dizimini kullanabiliriz.
- esxcli network ip route ipv4 remove -n 10.1.201.140/32 -g 10.4.16.30
Dikkat : Yönlendirme kuralı eklerken bindiğiniz dalı kesebilirsiniz. Bu sebeple öncesinde 2 kere düşünmesinde fayda var. Uzaktan işlem yapıyorsanız ESXi sunucuna ayrıca ILO, Konsol vb bir erişiminin olmasına dikkat ediniz.
Kaynak;
https://kb.vmware.com/articleview?docid=2001426
1. To add a static route, run the command:
esxcli network ip route ipv4/ipv6 add --gateway IPv4_address_of_router --network IPv4_address
For example, to add a route to 192.168.100.0 network with a /24 bit subnet mask (255.255.255.0) through a router with an IP address of 192.168.0.1, run this command:
esxcli network ip route ipv4 add --gateway 192.168.0.1 --network 192.168.100.0/24
2. To list the route, run the command:
esxcli network ip route ipv4 list
3. To remove a static route, run the command:
esxcli network ip route ipv4 remove -n network_ip/mask -g gateway_ip
For example, to remove a route from 192.168.100.0 network with a /24 bit subnet mask (255.255.255.0) through a router with an IP address of 192.168.0.1, run this command:
esxcli network ip route ipv4 remove -n 192.168.100.0/24 -g 192.168.0.1
2. When finished, check the host's current routing table with the esxcfg-route -l command. Any static routes display in the output.