ADSL - dial up

How to setup dial-up ADSL broadband connection on FreeBSD, which require username and password authentification???
I tried all solutions which i could find on net , but no one seems to work.
 
Back when I first started on ADSL I had to use mpd or pptpclient. Both are in the ports and worked for me. These days however my xDSL modem takes care of connecting.
 
I'm trying to connect from my ethernet card through Kasda ADSL router and i always get error messages.
 
If it's a DSL router it probably created the connection itself. Just try to set your ethernet to DHCP.
 
Either set up DHCP or a static address, you shouldn't have any problems setting up your connection if you have a router.
 
If the device in question is indeed a DSL router, and is also configured to act as one, then all you should need to do is to set the Ethernet interface in FreeBSD to DHCP.

If the device is only a "DSL modem", or a router, configured to act as a bridge, then you will need to setup PPPoE on the FreeBSD box. For this you will need:
  1. /usr/sbin/ppp
  2. config files correctly set up in /etc/ppp
  3. 'device tun' in your kernel config
  4. 'options NETGRAPH' in your kernel config
  5. 'options NETGRAPH_PPPOE' in your kernel config

Reading ppp(8), or at least the relevant parts of it, sure is a good thing :p

In any case, your first action should be to determine, what this device is actually configured to act as.
 
Back
Top