Ei tuonut toivottua tulosta
Ei tuonut toivottua tulosta
Erittäin merkillistä!
Olisi sinänsä mukava tietää mistä tuo ongelma johtuu,
arvata voi että jostakin ADSL-boksin asetuksesta kenties?
No teepäs sitten näin (vaihtoehto 1), editoi
/etc/rc.local tiedostoa
Lisää sinne rivi
/sbin/dhclient käsky ennen
exit 0 riviä
Tuo aiheuttaa sen että dhclient ajetaan ajotasolle (runlevel) 2 tultaessa,
Komentoa
sudo kate /etc/rc.local tai
sudo nano /etc/rc.localNäyttää muutoksen jälkeen tältä (jos et ole muuten aikaisemmin muuttanut)
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/sbin/dhclient
exit 0
Tarkista että ko. tiedoston oikeudet ovat rwx-rx-rx (755)
Komento siihen:
ls -l /etc/rc.localja pitäisi näyttää tältä:
-rwxr-xr-x 1 root root 322 2006-09-27 11:22 /etc/rc.local
jos ärrät, weet ja äksät ei ole noin, komenna tämä
sudo chmod 755 /etc/rc.localTai vaihtoehtoisesti (vaihtoehto 2) tuon ylläolevan tilalla voit kokeilla tätä.
Taas mennään
/etc/network/interfaces tiedostoon:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
## sleep a while and get then IP
post-up sleep 5
post-up /sbin/dhclient
Tiedosto näyttää muutoksen jälkeen tuolta
semmoinen huom. että en ole tuota post-up saanut itselläni toimimaan aikaisemmin,
nyt se toimii hienosti (tosin en tuollaista tarvi, mutta kokeilin huvikseni). Liekö sitten jokin
asia päivittynyt yms tai sitten on ollut typoja minulla? No nyt toimii nätisti ainakin itselläni.Huom, jos valitset vaihtoehdon 1, eli lisäät /etc/rc.local tiedostoon rivin /sbin/dhclient
niin ota silloin pois kaikki /etc/network/interfaces tiedostoon tekemäsi muutokset.
Jolloin se näyttää taas tältä:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp