diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-07 15:28:48 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-07 15:28:48 +0000 |
commit | 9fb77da4515a788a2de063801fcbfbe99d7475ec (patch) | |
tree | a3be394e8414947baa078f3dce89a36bd00ab714 /package/base-files/files/sbin/ifdown | |
parent | 9c60f181c1ace67fd8e98d668f6391e76959a864 (diff) |
add basic interface alias support.
for now (since we don't use ip in our network scripts yet), it adds :1, :2, ... alias interfaces
this will change when we add support for the ip utility, but the config format will remain the same.
example:
config alias test
option interface lan
option ipaddr 192.168.1.1
option netmask 255.255.0.0
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12241 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin/ifdown')
-rwxr-xr-x | package/base-files/files/sbin/ifdown | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 7cc87deb7..9eadad31e 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -64,4 +64,8 @@ config_get iftype "$cfg" type # remove the interface's network state uci_revert_state network "$1" - +# revert aliases state as well +config_get aliases "$1" aliases +for config in $aliases; do + uci_revert_state network "$config" +done |