diff options
Diffstat (limited to 'src/lib/connections')
-rw-r--r-- | src/lib/connections/README | 3 | ||||
-rw-r--r-- | src/lib/connections/dummy | 26 |
2 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/connections/README b/src/lib/connections/README index db840d6..6d8db9b 100644 --- a/src/lib/connections/README +++ b/src/lib/connections/README @@ -26,3 +26,6 @@ available. The readily sourced files are: Here, <profile> is the profile file specifying the desired network configuration. + +A simple example of a connection file is that of the dummy connection +type. diff --git a/src/lib/connections/dummy b/src/lib/connections/dummy new file mode 100644 index 0000000..879fc92 --- /dev/null +++ b/src/lib/connections/dummy @@ -0,0 +1,26 @@ +# Contributed by: João Valverde <joao.valverde@ist.utl.pt> + +. "$SUBR_DIR/ip" + +declare -ag BindsToInterfaces + +dummy_up() { + if is_interface "$Interface"; then + report_error "Interface '$Interface' already exists" + return 1 + fi + + ip link add "$Interface" type dummy + + bring_interface_up "$Interface" + ip_set +} + +dummy_down() { + ip_unset + bring_interface_down "$Interface" + ip link del "$Interface" +} + + +# vim: ft=sh ts=4 et sw=4: |