diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-04-02 09:51:22 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-04-02 09:51:22 -0700 |
commit | 2ca7bd2ca68971f5b0873504ada0947894fe6163 (patch) | |
tree | 2fa6bb8d3370537cb9261e811f9eee31f3febcb9 /lib | |
parent | b68ac2b1969060ea6fa2f011a3107c83ad26e96d (diff) | |
download | vyatta-cfg-2ca7bd2ca68971f5b0873504ada0947894fe6163.tar.gz vyatta-cfg-2ca7bd2ca68971f5b0873504ada0947894fe6163.zip |
Add support for incoming interface type
New ingress interface support.
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Vyatta/Interface.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Vyatta/Interface.pm b/lib/Vyatta/Interface.pm index 432fe33..150918c 100755 --- a/lib/Vyatta/Interface.pm +++ b/lib/Vyatta/Interface.pm @@ -76,6 +76,7 @@ my %net_prefix = ( '^peth[\d]+$' => { path => 'pseudo-ethernet', vif => 'vif', }, '^wlan[\d]+$' => { path => 'wireless', vif => 'vif' }, + '^in[\d]+$' => { path => 'incoming' }, ); # get list of interface types (only used in usage function) |