]>
git.ipfire.org Git - ipfire-2.x.git/blob - src/installer/start-networking.sh
2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2014 IPFire Team <info@ipfire.org> #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
20 ###############################################################################
22 function list_interfaces
() {
25 for interface
in /sys
/class
/net
/*; do
26 [ -d "${interface}" ] ||
continue
28 interface
="$(basename ${interface})"
29 case "${interface}" in
38 local interface
="${1}"
40 # Bring up the interface
41 ip link
set "${interface}" up
43 # Try to make the lights of the adapter light up
44 ethtool
-i "${interface}" &>/dev
/null
46 # Start the DHCP client
52 for interface
in $
(list_interfaces
); do
53 if ! try_dhcp
"${interface}"; then
54 echo "Could not acquire an IP address on ${interface}"
58 echo "Successfully started on ${interface}"
60 # Wait until everything is settled