LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   are there problems with D-Link and Linux? (https://www.linuxquestions.org/questions/linux-networking-3/are-there-problems-with-d-link-and-linux-121986/)

degraffenried13 12-02-2003 11:55 AM

are there problems with D-Link and Linux?
 
I was looking at buying a D-Link router because of their cost and features, but I just wanted to see if anybody found problems accessing the router using web browsers in Linux? I don't know if it is a stupid question, but I didn't want to get stuck with some hardware I can't use either.

Pcghost 12-02-2003 12:14 PM

I use a D-Link wireless router without problems. It's a 5 port cat-5 + 802.11b router. I know some people have difficulty with Dlink pcmcia wireless cards, but I don't have one so I can't say for sure. The routers are cool though.

/bin/bash 12-02-2003 09:24 PM

I have a DI-704P 4-port w/print server. Works great, easy to access. Just point your browser to http://192.168.0.1 and you login (first thing you do is change the generic password) and start setting it up the way you want.

Hears something neat I like about it, I have this in my .bashrc file and use it to get the DNS and WAN IP.

Code:

function ip() # get IP/DNS addresses
{
MY_IP=$(/sbin/ifconfig eth0 | awk '/inet/ { print $2 } ' | sed -e s/addr://)
DLINKSTATUS=`lynx -dump http://jimmyneutron/status.htm`
GATEWAY=$(echo "$DLINKSTATUS"|grep Gateway|sed 's/^.*y //')
WAN=$(echo "$DLINKSTATUS"|grep Address|sed -e'1,3d' -e's/^.*ss //')
DNS1=$(echo "$DLINKSTATUS"|grep Server|sed -e'1d' -e's/^.*er //' \
-e's/,//'|awk '{ print $1 }')
DNS2=$(echo "$DLINKSTATUS"|grep Server|sed -e'1d' -e's/^.*er //' \
-e's/,//'|awk '{print $2 }')

echo "Local IP      = $MY_IP"
echo "WAN IP        = $WAN"
echo "Gateway      = $GATEWAY"
echo "Primary DNS  = $DNS1"
echo "Secondary DNS = $DNS2"
}

I suppose you can do that with just about any router but I thought it was worth posting. NOTE: jimmyneutron is the router.

Code:

Screenshot-
$ ip
Local IP      = 192.168.0.2
WAN IP        = 121.15.204.222
Gateway      = 121.15.204.129
Primary DNS  = 121.15.94.5
Secondary DNS = 121.15.95.2


synaptical 12-02-2003 09:48 PM

i have the DI-604 - no problems. :cool:

edit: /bin/bash, that is too slick. :D just what i needed, too, coincidentally. thx.

BigBike 12-02-2003 10:39 PM

D-link Router
 
I have a D-link router and wireless connection used on a Windows XP & Linux redhat computers. The windows computer is using the wireless connection and is working great. My linux computer has a D-link card with the RTL8139D chip set. I'm A Real Newbe to Linux and my son hooked up the router and internet connection (using DSL). The linux machine works fine except for the internet connection. It worked one evening and has not worked sense. I had a Intellinet 10/100 card using the RTL8139D card in the machine before changing to the D-link card. both cards installed and were found by linux. When restatting linux I get amessage that the RTL8139D card seems not to be present ! Soooooooooooo


All times are GMT -5. The time now is 03:41 PM.