|
|
Zeile 6: |
Zeile 6: |
| Ulf: Hier beantworten wir fragen von Euch an die LUG-VS.de (ähnlich wie in einem Forum). | | Ulf: Hier beantworten wir fragen von Euch an die LUG-VS.de (ähnlich wie in einem Forum). |
| | | |
− | ------------------------------------------------------------------------------------------------
| |
| | | |
− | Hallo
| |
− | Meine Edubuntuinstallation kommt nicht ins Internet.
| |
− | Irgendwie habe ich alles soweit vernudelt dass jetzt nur noch ein neuer Anlauf hilft.
| |
− | Die folgende Beschreibung der Problemlösung stammt aus der unofiziellen Dapperbeschreibung.
| |
− |
| |
− | --------------------------------------------------------------------------------------------------
| |
− |
| |
− | DHCP Server
| |
− | [edit]
| |
− | How to install DHCP Server for automatic IP addresses assignment
| |
− | Read #General Notes
| |
− | Read #How to add extra repositories
| |
− | e.g. Assumed that "eth0" is the interface for network card
| |
− | IP Address Range: 192.168.0.100 to 192.168.0.200
| |
− | Subnet Mask: 255.255.255.0
| |
− | DNS Servers: 202.188.0.133, 202.188.1.5
| |
− | Domains: tm.net.my
| |
− | Gateway Address: 192.168.0.1
| |
− | sudo apt-get install dhcp3-server
| |
− | sudo cp /etc/default/dhcp3-server /etc/default/dhcp3-server_backup
| |
− | sudo gedit /etc/default/dhcp3-server
| |
− |
| |
− | Find this line
| |
− | ...
| |
− | INTERFACES=""
| |
− |
| |
− | Replace with the following line
| |
− | INTERFACES="eth0"
| |
− |
| |
− | Save the edited file
| |
− | sudo cp /etc/dhcp3/dhcpd.conf /etc/dhcp3/dhcpd.conf_backup
| |
− | sudo gedit /etc/dhcp3/dhcpd.conf
| |
− |
| |
− | Find this section
| |
− | ...
| |
− | # option definitions common to all supported networks...
| |
− | option domain-name "example.org";
| |
− | option domain-name-servers ns1.example.org, ns2.example.org;
| |
− |
| |
− | default-lease-time 600;
| |
− | max-lease-time 7200;
| |
− | ...
| |
− |
| |
− | Replace with the following lines
| |
− | # option definitions common to all supported networks...
| |
− | #option domain-name "example.org";
| |
− | #option domain-name-servers ns1.example.org, ns2.example.org;
| |
− |
| |
− | #default-lease-time 600;
| |
− | #max-lease-time 7200;
| |
− |
| |
− | Find this section
| |
− | ...
| |
− | # A slightly different configuration for an internal subnet.
| |
− | #subnet 10.5.5.0 netmask 255.255.255.224 {
| |
− | # range 10.5.5.26 10.5.5.30;
| |
− | # option domain-name-servers ns1.internal.example.org;
| |
− | # option domain-name "internal.example.org";
| |
− | # option routers 10.5.5.1;
| |
− | # option broadcast-address 10.5.5.31;
| |
− | # default-lease-time 600;
| |
− | # max-lease-time 7200;
| |
− | #}
| |
− | ...
| |
− |
| |
− | Replace with the following lines
| |
− | # A slightly different configuration for an internal subnet.
| |
− | subnet 192.168.0.0 netmask 255.255.255.0 {
| |
− | range 192.168.0.100 192.168.0.200;
| |
− | option domain-name-servers 202.188.0.133, 202.188.1.5;
| |
− | option domain-name "tm.net.my";
| |
− | option routers 192.168.0.1;
| |
− | option broadcast-address 192.168.0.255;
| |
− | default-lease-time 600;
| |
− | max-lease-time 7200;
| |
− | }
| |
− |
| |
− | Save the edited file
| |
− | sudo /etc/init.d/dhcp3-server restart
| |
− |
| |
− | ------------------------------------------------------------------------------------
| |
− |
| |
− | Am Dienstag, 13. Juni 2006 13:11 aus der Mailingliste
| |
− |
| |
− | > Das neue Edubuntu ist für Nichtskönner optimiert, relativ langsam auf
| |
− | > meinem Rechner und hat kein DHCP ->
| |
− |
| |
− | Glaube ich nicht! Ich hab schon lange keine Distribution mehr gesehen, die
| |
− | nicht einen DHCP-Client per Default installiert.
| |
− |
| |
− | > Damit meine ich dass ich nicht fähig
| |
− | > war mit Edubuntu in das Internet zu kommen.
| |
− | > Ich wollte DHCP mit Synaptic nachinstallieren, aber da muss wohl ein
| |
− | > Denkfehler meinerseits vorhanden sein.
| |
− |
| |
− | Ja: Es gibt tausend Möglichkeiten, warum ein Netzwerk nicht geht. Der
| |
− | DHCP-Client braucht keine Konfiguration und ist eine recht robuste
| |
− | Angelegenheit. Bessere Vorgehensweise:
| |
− |
| |
− | 1) Mit "ifconfig eth0" checken, ob deine Netzwerkkarte überhaupt konfiguriert
| |
− | ist.
| |
− | 2) Falls nein, mit "ifconfig eth0 192.168.0.2" (oder so) der Karte eine IP
| |
− | geben.
| |
− | 3) Mit "route add default gw 192.168.0.1" die Adresse deines Routers
| |
− | einstellen.
| |
− | 4) Mit "less /etc/resolv.conf" überprüfen, ob der richtige Nameserver
| |
− | drinsteht. Gegebenenfalls editieren.
| |
− | 5) Kontrollieren, ob der Router per ping erreichbar ist.
| |
− |
| |
− |
| |
− | ------------------------------------------------------------------------------------
| |
− |
| |
− | später kommt genaueres (falls das so in Ordnung ist)
| |
− | mvG vom ewigen Lehrling
| |
| | | |
| === Betreff Deiner Frage === | | === Betreff Deiner Frage === |