static

Microsoft Azure Set a Static Internal IP Address for a VM

Verify that a specific IP address is available Before you specify a static IP address from your address pool, you may want to verify that the IP address has not been already assigned. In the example below, we’re checking to see whether the IP address 10.1.61.140 is available in the TestVNet virtual network. Test-AzureStaticVNetIP –VNetName …

Microsoft Azure Set a Static Internal IP Address for a VM Read More »

Adding Static Route on Solaris System

How we can add static route onto solaris system using command line: # route add -net 10.0.0.0 10.1.50.250 Add to startup script: # vi /etc/init.d/static_routes /usr/sbin/route add -net 10.0.0.0 10.1.50.250 # ln -s /etc/init.d/static_routes S99static_routes

Scroll to Top