Connect internet

Hi my name is Dipesh. i need help in connecting to internet. I have two options. One is mobile 3g and i don't know how to configure ppp.conf and the other option is ethernet controller. any help in connecting either or both will be helpful.
My 3g provider is BSNL(from India) and my ethernet nic is Brodadcom Netlink Gigabit BCM5787A.
Thanks in advance..
 
ethernet is easy to setup. once you install fbsd and configure one nic, you will have playground where you can make experiments with configuring your 3g con.
 
i don't have crystal ball thus it will be very helpful to describe in detail what problems you encounter.
ifconfig is your best friend to setup your nic.
 
what't the output of ifconfig -a? googling around your card have to be supported by bge(4) driver
fwe0 and fwip0 appears to be ip over firewire..
 
i tried using kldload if_bge. but i'm getting an error. and anyhow, its the 3g ppp conf i'm really looking for.. can anyone help me with that?
 
its still not working. this is what i entered in my ppp.conf

Code:
kpn:
 set device /dev/cuaU0
 set speed 384000
 set timeout 0
 set authname a
 set authkey a

 set dial "ABORT BUSY TIMEOUT 2 \
        \"\" \
        AT OK-AT-OK \
        AT+CFUN=1 OK-AT-OK \
        AT+CMEE=2 OK-AT-OK \
        AT+CSQ OK \
        AT+CGDCONT=1,\\\"IP\\\",\\\"bsnlnet\\\" OK \
        AT+CGACT? OK-AT-OK \
        AT+CGATT? OK \
        AT+CGCLASS? OK \
        AT+COPS? OK \
        ATD*99***1# CONNECT"

 ## Lower the MTU as this seems to make the link more stable for GPRS connections.
 #set mtu maximum 296
 #set mru maximum 296
 set crtscts on
 disable vjcomp
 disable acfcomp
 disable deflate
 disable deflate24
 disable pred1
 disable protocomp
 disable mppe
 disable ipv6cp
 disable lqr
 disable echo
 nat enable yes 
 enable dns
 resolv writable
 set dns 208.67.220.220 208.67.222.222	# openDNS
 set ifaddr 10.1.0.2/0 10.1.0.1/0 255.255.255.255 0.0.0.0
 #add default HISADDR          # See ppp.link*


what i get is "chat script failed"
 
Back
Top