[RedHat] Knoppix 3.6/ADSL - Konfig

Feelgood

Erster Beitrag
Knoppix 3.6/ADSL - Konfig

Hallo liebe Gäste an Board!

Nach einigem Googeln und Suchen eine Frage an euch:

Knoppix 3.6, DSL-Zugang über ASUS-DSL-Modem zu Netcologne klappt nicht.
Mit Suse/Win98 gehts tadellos, nur würde ich gerne Knoppix/Debian nutzen :cry:

Hier meine Konfigurationsversuche, bzw. shell-snippets davon:





Start mit pon:
root@Rechner:/home/Username# pon
Plugin rp-pppoe.so loaded.
RP-PPPoE plugin version 3.3 compiled against pppd 2.4.2

plog: liefert nichts.
root@Rechner:/home/Username# plog
root@Rechner:/home/Username#

ADSL/PPPOE konfigurieren, meldet: "DSL-Verbindung gefunden":
Es wurde ein Access-Concentrator an eth0 ....
hurra. Standardeingaben wie Vorgabe, Username, Password auf


Abschließend:
root@Rechner:/home/Username# ifconfig ppp0
ppp0 Protokoll:punkt-zu-Punkt Verbindung
inet Adresse:213.196.225.82 P-z-P:195.14.247.95 Maske:255.255.255.255
UP PUNKTZUPUNKT RUNNING NOARP MULTICAST MTU:1492 Metric:1
RX packets:9 errors:0 dropped:0 overruns:0 frame:0
TX packets:3 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:3
RX bytes:418 (418.0 b) TX bytes:54 (54.0 b)



Trotzdem: geht nix im Konqueror oder über z.B. :
ping heise.de, ping www.heise.de o.ä, plog bleibt stumm...



################### Hier die dsl-provider:
# Configuration file for PPP, using PPP over Ethernet
# to connect to a DSL provider.
#
# See the manual page pppd(8) for information on all the options.

##
# Section 1
#
# Stuff to configure...

# MUST CHANGE: Uncomment the following line, replacing the user@provider.net
# by the DSL user name given to your by your DSL provider.
# (There should be a matching entry in /etc/ppp/pap-secrets with the password.)
#user myusername@myprovider.net
user "username@netcologne.de"
#auch schon probiert, geht nicht:
#user username@netcologne.de
#user username


# Use the pppoe program to send the ppp packets over the Ethernet link
# This line should work fine if this computer is the only one accessing
# the Internet through this DSL connection. This is the right line to use
# for most people.
pty "/usr/sbin/pppoe -I eth0 -T 80 -m 1452"

# An even more conservative version of the previous line, if things
# don't work using -m 1452...
#pty "/usr/sbin/pppoe -I eth0 -T 80 -m 1412"

# If the computer connected to the Internet using pppoe is not being used
# by other computers as a gateway to the Internet, you can try the following
# line instead, for a small gain in speed:
#pty "/usr/sbin/pppoe -I eth0 -T 80"


# The following two options should work fine for most DSL users.

# Assumes that your IP address is allocated dynamically
# by your DSL provider...
noipdefault
# Try to get the name server addresses from the ISP.

# Use this connection as the default route.
# Comment out if you already have the correct default route installed.
defaultroute

##
# Section 2
#
# Uncomment if your DSL provider charges by minute connected
# and you want to use demand-dialing.
#
# Disconnect after 300 seconds (5 minutes) of idle time.

#demand
#idle 300

##
# Section 3
#
# You shouldn't need to change these options...

hide-password
lcp-echo-interval 60
lcp-echo-failure 3
# Override any connect script that may have been set in /etc/ppp/options.
connect /bin/true
noauth
persist
mtu 1492

# RFC 2516, paragraph 7 mandates that the following options MUST NOT be
# requested and MUST be rejected if requested by the peer:
# Address-and-Control-Field-Compression (ACFC)
noaccomp
# Asynchronous-Control-Character-Map (ACCM)
default-asyncmap
usepeerdns


###################


Ich danke für jede Antwort im voraus! :bier
 
root@Rechner:/home/Username# ifconfig ppp0
ppp0 Protokoll:punkt-zu-Punkt Verbindung
inet Adresse:213.196.225.82 P-z-P:195.14.247.95 Maske:255.255.255.255
UP PUNKTZUPUNKT RUNNING NOARP MULTICAST MTU:1492 Metric:1
RX packets:9 errors:0 dropped:0 overruns:0 frame:0
TX packets:3 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:3
RX bytes:418 (418.0 b) TX bytes:54 (54.0 b)

An diesem ifconfig Eintrag siehst du das du dich erfolgreich ins Internet eingewählt hast. Aber du kannst anscheinend keine Namen auflösen, da ja www.heise.de nicht aufgelöst wird. Das kann mehrere Gründe haben:

1) Du hast eine Firewall, die den Port 53 (UDP) gesperrt hat. Dieser Port ist für DNS zuständig.

2) In /etc/resolv.conf müssen die Nameserver (DNS Server) von deinem Provider stehen. Diese Ips kannst du zb. erfahren, indem du dort anrufst.

Bei mir ist schaut die resolv.conf so aus (T-Online):

nameserver 217.237.151.97
nameserver 194.25.2.129

mfg viper
 
Oben