Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change maximum wifi listed and add an option for trunk(4) #7

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
17 changes: 11 additions & 6 deletions wiconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# wiconfig - simplifies the configuration of wireless interfaces
#
# SYNOPSIS
# wiconfig [-dqs] interface
# wiconfig [-dnqs] interface
#
# EXAMPLE
# Manually configure a wireless interface
Expand Down Expand Up @@ -76,13 +76,13 @@
oIFS=$IFS
myname=$0

max=20
max=40
# Number of seconds to wait before checking interface status
seconds=3
wiconfigdb="/etc/wiconfig.db"

function usage {
echo "usage: $myname [-dqs] interface"
echo "usage: $myname [-dnqs] interface"
exit 1
}

Expand Down Expand Up @@ -357,7 +357,9 @@ function configure {
# Apparently we need to use eval and single quotes to handle nwids with
# spaces
eval ifconfig $if nwid \'$1\' $2 up > /dev/null 2>&1
dhclient $if
if [ ! $nodhcp ]; then
dhclient $if
fi
}

function reconnect {
Expand Down Expand Up @@ -441,7 +443,9 @@ function determine {
exit 1
fi
fi
dhclient $if
if [ ! $nodhcp ]; then
dhclient $if
fi
}

# Update existing db record, if it exists, or create a new one
Expand Down Expand Up @@ -528,9 +532,10 @@ if [ "X$(whoami)" != Xroot ]; then
exit 1
fi

while getopts dqs opt; do
while getopts dnqs opt; do
case $opt in
d) debug=true;;
n) nodhcp=true;;
q) quiet=true;;
s) status=true;;
?) usage;;
Expand Down