7 lines
282 B
Bash
Executable File
7 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sonic-cfggen -m /etc/sonic/minigraph.xml -t /usr/share/sonic/templates/interfaces.j2 >/etc/network/interfaces
|
|
[ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid
|
|
service networking restart
|
|
ifdown lo && ifup lo
|