diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2000-09-21 11:12:34 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2000-09-21 11:12:34 +0000 |
commit | bb5aeb1cde738a4ddb1fff00ea50093cb78e1337 (patch) | |
tree | 621ffd10219d8771040c4015cd9af07a5e8d2440 /perl-install/standalone | |
parent | e3e17cbfe082f3464672c5f7af534f7ea9a6ada4 (diff) | |
download | drakx-bb5aeb1cde738a4ddb1fff00ea50093cb78e1337.tar drakx-bb5aeb1cde738a4ddb1fff00ea50093cb78e1337.tar.gz drakx-bb5aeb1cde738a4ddb1fff00ea50093cb78e1337.tar.bz2 drakx-bb5aeb1cde738a4ddb1fff00ea50093cb78e1337.tar.xz drakx-bb5aeb1cde738a4ddb1fff00ea50093cb78e1337.zip |
reduce dhcpd address range to 16-253 because 255 seems problematic
uses detect_devices::getNet() for better detection of network devices
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakgw | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 6865d16b8..6b4b3305e 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -19,6 +19,7 @@ use common qw(:system :file); use interactive; use log; use c; +use detect_devices; local $_ = join '', @ARGV; @@ -162,11 +163,14 @@ my @configured_devices = map { /ifcfg-(\S+)/; $1 } `ls /etc/sysconfig/network-sc my %aliased_devices; (/^alias\s+(eth[0-9])\s+(\S+)/) and ($aliased_devices{$1} = $2) foreach (`cat /etc/modules.conf`); my @cards_to_ignore = (); #= @{netconnect::configured_devices}; log::l("Information from netconnect: ignoring card $_\n") foreach (@cards_to_ignore); +my @all_cards_getnet = detect_devices::getNet(); my @all_cards; -foreach my $dev (keys %aliased_devices) - { grep(/$dev/,@cards_to_ignore) or (push @all_cards, "Interface $dev (using module $aliased_devices{$dev})") }; +foreach my $card (@all_cards_getnet) +{ + next if grep(/$card/, @cards_to_ignore); + push @all_cards, exists $aliased_devices{$card} ? "Interface $card (using module $aliased_devices{$card})" : "Interface $card"; +} - # print "pci_detection: "; print ">".$_->[2]."< " foreach (@pci_ethernet_cards); # print "\nconfigured: "; print ">".$_."< " foreach (@configured_devices); # print "\nactive: "; print ">".$_."< " foreach (@active_devices); @@ -264,7 +268,6 @@ my @chain_rules; # "You will then be able to connect other computers to this network, with automatic ". # "DHCP configuration."), 1) or $in->exit(0); - #- ********************************** #- * 2nd step: configure @@ -455,7 +458,7 @@ subnet $lan_address.0 netmask 255.255.255.0 { option domain-name "homelan.org"; option domain-name-servers $lan_address.1; - range dynamic-bootp $lan_address.16 $lan_address.255; + range dynamic-bootp $lan_address.16 $lan_address.253; default-lease-time 21600; max-lease-time 43200; } |