summaryrefslogtreecommitdiffstats
path: root/package/swconfig/src
Commit message (Collapse)AuthorAgeFilesLines
* swconfig: fix vlan/port configs being applied to all switchesjogo2011-10-031-2/+2
| | | | | | Check devn instead of dev (which will never be null at this point). git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28362 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: hide inactive vlans on "swconfig dev switch0 show"nbd2011-08-301-4/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28133 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: fix backward compatibilityjuhosg2011-07-281-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | swconfig fails to load uci configuration after the generic switch identifier changes. root@OpenWrt:/# uci show network | grep switch network.@switch[0]=switch network.@switch[0].name=eth0 network.@switch[0].reset=1 network.@switch[0].enable_vlan=1 network.@switch_vlan[0]=switch_vlan network.@switch_vlan[0].device=eth0 network.@switch_vlan[0].vlan=1 network.@switch_vlan[0].ports=0t 2 3 4 5 network.@switch_vlan[1]=switch_vlan network.@switch_vlan[1].device=eth0 network.@switch_vlan[1].vlan=2 network.@switch_vlan[1].ports=0t 1 root@OpenWrt:/# swconfig dev eth0 load /etc/config/network Failed to apply configuration for switch 'switch0' root@OpenWrt:/# swconfig dev switch0 load /etc/config/network Failed to apply configuration for switch 'switch0' git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27820 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: Add generic switch identifiersjogo2011-07-273-4/+9
| | | | | | | | Also make switches available under a generic name "switch<num>" for device name agnostic access. The old device name is used as an alias for backward compatibility. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27800 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: make reset and enable_vlan default to 1 (based on patch by Nikolay ↵nbd2011-07-031-2/+2
| | | | | | Martynov) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27375 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: avoid setting "NOVAL" attributes if "0" was provided as a valuenbd2011-07-031-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27374 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: add -lnl-genl (patch by Philip Prindeville) - purely cosmetic, ↵nbd2011-02-131-1/+1
| | | | | | swconfig uses libnl-tiny anyway git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25509 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/swconfig: add sanity checks to prevent a segfaultjuhosg2011-01-081-0/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24932 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: Add cpu port index to help output.juhosg2010-04-163-1/+4
| | | | | | | | | | | | | | Let swconfig provide the cpu port index in its help page. This is needed as e.g. Atheros switches have their cpu port at port 0, not port 5. This could allow e.g. luci to get a rough overview of the layout of the switch. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20939 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: Fix switch name.juhosg2010-04-161-1/+1
| | | | | | | | | | | This patch fixes a small typo in swconfig's client side that caused it to print the interface name instead of the switch's device name on the help page. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20938 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: Remove unused codenbd2010-02-191-6/+0
| | | | | | Signed-off-by: Martin Mares <mj@ucw.cz> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19758 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: add copyright for Martin Maresnbd2010-02-151-0/+1
| | | | | | Signed-off-by: Martin Mares <mj@ucw.cz> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19642 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: use print_attr_val() in CMD_GETnbd2010-02-151-17/+2
| | | | | | | | | Use the print_attr_val() function introduced by the previous patch to simplify the get command. Signed-off-by: Martin Mares <mj@ucw.cz> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19641 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: add show commandnbd2010-02-151-1/+88
| | | | | | | | | Add a "show" command, which displays all attributes of the selected port, VLAN, or of the whole switch. Signed-off-by: Martin Mares <mj@ucw.cz> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19640 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: clean up command line parsingnbd2010-02-151-45/+35
| | | | | | | | | The command line parser was unsystematic and it silently ignored many illegal combinations of options. Try to clean that up. Signed-off-by: Martin Mares <mj@ucw.cz> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19639 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: show tagged port flagjuhosg2010-01-201-2/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19238 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: support providing the switch device name in an option instead of ↵nbd2010-01-181-0/+18
| | | | | | the section name - necessary to support switches that contain characters such as "-" git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19208 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: use libnl-tiny instead of libnlnbd2009-04-301-5/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15508 3c298f89-4303-0410-b956-a3cf2f4a3e73
* swconfig: implement uci loading supportnbd2009-04-215-62/+361
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15315 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add new switch configuration apinbd2008-10-184-0/+1094
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13009 3c298f89-4303-0410-b956-a3cf2f4a3e73