mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
10 lines
183 B
Plaintext
10 lines
183 B
Plaintext
#!/bin/bash
|
|
|
|
ifconfig eth2 down && \
|
|
ifconfig eth2 hw ether [ETH2MAC] && \
|
|
ifconfig eth2 up && \
|
|
sleep 3 && \
|
|
ip route add 0/0 via [GATEWAY] && \
|
|
sleep 3 && \
|
|
service dnsmasq restart
|