summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2013-07-28Fix TypoJustin1-1/+1
Add missing "$" in variable call.
2013-07-25Make netctl-auto more hook friendlyJouke Witteveen2-20/+9
The hooks (including any interface hook) are loaded each time a wpa event occurs. This means the auto.action script can be extended in the hooks. For this purpose, several exported variables (mainly $ACTION) can be checked for their value. The name of the active profile is not exported, but still available (just as in ordinary netctl usage) through the $Profile variable. Profiles ending in .action are disallowed (reserved for possible future use). Both ifplugd and wpa_actiond have a notion of 'action script'.
2013-07-25Merge branch 'master' of git://github.com/gandro/netctl into gandro-masterJouke Witteveen2-35/+243
2013-07-24Use iproute2 for bridging (FS#36165)Jouke Witteveen1-10/+9
This sheds the dependency on the old bridge-utils (brctl).
2013-07-23Rework some lines in netctl-autoSebastian Wicki1-4/+6
2013-07-23More consistent quoting in netctl-autoSebastian Wicki1-24/+24
2013-07-21Rewrite of netctl-autoSebastian Wicki1-40/+228
This adds a command line interface to the netctl-auto script to allow users more control over the automatic profile selection.
2013-07-21Add wpa_unquote functionSebastian Wicki1-0/+18
This function can be used to unquote WPA supplicant config file strings returned from wpa_cli calls.
2013-07-21Introduce sedJouke Witteveen3-7/+4
Instead of filtering results from grep, we can also just use sed. Installations having grep can be expected to have sed as well.
2013-07-16Don't release DHCP leases by default (FS#35760)Jouke Witteveen1-3/+5
Regardless of the DHCP client, leases are not released by default. This introduces a new configuration parameter: DHCPReleaseOnStop, which can be used to change the default behavior.
2013-07-12Flush routing tables in ip_unset (FS#35638)Jouke Witteveen1-0/+2
This adds to 032df. Custom and automatically (in case of IPv6) added routes are now deleted when the interface is brought down.
2013-07-12Style fixesJouke Witteveen2-2/+5
Redirect syntax and a modeline.
2013-06-16Fix default interface bindings (third time)Jouke Witteveen4-6/+6
The declare builtin defaults to making variables local. Previous attempts: 711c46457ae9fef52c7c529d89c67d0d526f73ef e8210827fd59e4539a70af55cb452b211633fedd
2013-06-16Ordering improvements in IP configurationJouke Witteveen1-33/+30
- Add static routes prior to setting the default IP4 gateway (github/pull/43) - Set sysctl property net.ipv6.conf.<interface>.accept_ra earlier (FS#35788)
2013-06-04Expose version informationJouke Witteveen2-2/+1
Profiles now have access to it.
2013-05-21Expose the 'maxfail' option for ppp connectionsJouke Witteveen2-2/+2
2013-05-18Rewording some lines regarding exit codesJouke Witteveen2-5/+3
2013-05-17Properly check existence of a connection type.Ivan Shapovalov1-1/+1
Substituting "/dev/null/nonexistent" for an empty $Connection, of course, does generally work, but is somewhat ugly (esp. in that the string is appended to $CONN_DIR, so the resulting path may theoretically exist). Instead, substitute an empty string for the complete path if $Connection is empty: an empty string can never be readable. Signed-off-by: Ivan Shapovalov <intelfx100@gmail.com>
2013-05-17Restrict dhcpcd to IPv4Jouke Witteveen1-2/+2
By default, dhcpcd requests leases for both versions of IPv6. In the past, dhcpcd did not support IPv6, so this commits restores old behavior.
2013-05-17Flush the interface configuration in ip_unset instead of bring_interface_down.Thomas Bächler2-2/+4
When switching networks in auto.action, the addresses are not flushed. This is especially problematic with stateless ipv6 autoconfigutation, as invalid IPs may stay around until their (potentially very long) lifetime has expired. bring_interface_down is always called after ip_unset everywhere else, so this change does not affect anything else. V2: Make sure not to flush the link local address.
2013-05-15Make a directory for a unit file link before creating the link itself.Evan Teitelman1-0/+1
The '/etc/systemd/system/multi-user.target.wants' directory does not necessarily exist before netctl is invoked.
2013-05-15More consistent approach to outputJouke Witteveen1-3/+3
2013-05-11Added netctl-auto detectionKory Prince1-3/+10
2013-05-06Improve array handlingJouke Witteveen7-40/+33
When interpreted as an array, the empty string represents a 1-element array consisting of the empty string. This is actually very reasonable. Reported by: Thomas Bächler <thomas@archlinux.org>
2013-05-05Use pkg-config to obtain the systemd system unit directoryJouke Witteveen1-3/+3
This ensures the units are installed correctly if systemd is installed in an alternate location like /lib/systemd. Idem for the location of profile-based units. Based on a proposal by: Mike Gilbert <floppym@gentoo.org>
2013-05-01Remove the last traces of netcfgJouke Witteveen1-1/+1
2013-04-23Small review of PPP related connections (take 2)Jouke Witteveen2-2/+2
The previous take did not contain the stuff that initially motivated rewriting the quoting function. The code of both PPP connection types is still sub-par, but at least functionally, it is a little better now.
2013-04-18Small review of PPP related connectionsJouke Witteveen2-40/+40
The most important change is that we now bring the interface down correctly in pppoe_down.
2013-04-18add command to turn modem on, fix pin commandLeo von Klenze1-1/+2
2013-04-15Allow group-accessible tuntap devicesJouke Witteveen1-1/+1
The tuntap connection type requires both a User and a Group to be defined. However, when configuring a tuntap device in the kernel, the device's uid and gid must both match for someone to be able to use the device. The only way to create a tuntap device accessible to a group of users is therefore to avoid specifying the user argument to "ip tuntap add". Reported by: A Web
2013-04-15Fix naming of IEEE 802 working groupsJouke Witteveen5-8/+8
Use 'wpa' to refer to the 802.11i and 802.1x client side software (wpa_supplicant) in general.
2013-04-13Allow IP6 address to be set in case IP6=statelessJouke Witteveen1-2/+4
Router advertisements can tell clients to not generate a public address automatically (AdvAutonomous off). Reported by: Jonne Haß
2013-04-10Fix DHCPOptionsJouke Witteveen2-5/+5
Split them into different variables for different clients. Also, IP6 gets its own, so that it can have options different from the IP4 invocation.
2013-04-10Uniformize modelinesJouke Witteveen8-7/+10
2013-04-10Changed connections to use underscores.Robbie Smith1-10/+10
2013-04-08Code tidying up. Renamed mobile connection to mobile-ppp.Robbie Smith2-148/+147
Also: - Replaced echos with invocations of cat, where possible. - Fixed PIDFILE to point to the file ppp creates. This ensures the interface can be brought down. - Fixed setting of InterfaceRoot. - Removed vim syntax highlighting from ethernet connection.
2013-04-08Support more interface typesJouke Witteveen1-2/+3
This allows future connection types to use interfaces other than networking interfaces, for instance to use USB interfaces.
2013-04-08Simplify wpa network block creationJouke Witteveen1-20/+11
It had grown a little diffuse.
2013-04-08Added ppp mobile by porting from netcfg.Robbie Smith1-0/+148
2013-03-25Fix pppoeJouke Witteveen1-1/+1
The up/down functions don't take arguments as they did in netcfg.
2013-03-24Nitpicking on a return valueJouke Witteveen1-1/+1
2013-03-22More possibilities for connection scriptsJouke Witteveen6-1/+7
This allows connection scripts to provide defaults, among other things.
2013-03-22Fix escaping unfortunate stringsJouke Witteveen1-8/+9
Strings that look like arguments, as well as no string at all, were causing trouble. Reported by: Thomas Bächler
2013-03-19Fix termination of wpa_actiondJouke Witteveen2-18/+11
wpa_supplicant would not immediately terminate with an attached ctrl monitor.
2013-03-18Unhardcode pathsJouke Witteveen3-4/+6
Remove distribution-specific paths (and allow overrides).
2013-03-18Proper systemd escapingJouke Witteveen2-12/+22
This fixes the use of all sorts of characters in profile names/interface names.
2013-03-12connections/vlan: fix BindsToInterfaces length calculationFlorian Pritz1-1/+1
${#array[@]} requires "[@]" to count the array members. Otherwise it will return the length of the first element which will hardly ever be 1. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-03-12Uniform translation of profiles to unit namesJouke Witteveen1-11/+22
The unit corresponding to a profile named $p is netctl@$p.service. We should not drop the suffix, since $p could contain a valid unit suffix (although .service is not allowed). We take care of this uniformly by wrapping around systemctl. Additionally, `systemctl list-units` does not accept an '--active' parameter, so we fix it to be consistent with `netctl list`.
2013-02-20Fix rfkillJouke Witteveen1-2/+4
Redirecting inside a do_debug call is, of course, impossible.
2013-02-14Automatically escape dashes in interface namesIvan Shapovalov1-0/+1
Custom interface names like "eth-phone" or "eth-lte" are not uncommon, and since they are used in pathes inside systemd units, dashes and unprintable characters shall be escaped per unit file rules. So replace "-" with "\x2d" in interface names.