Redhat DNS Entry


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Redhat DNS Entry
# 22  
Old 09-06-2008
Ispci etc.

A cd with a driver came with the NIC Card. I installed it successfully in Vista but was unable to extract it with UNIX. Do you think that once the driver is installed then DGE-530T will show up on the pull down menu?

Below is what I did to install the driver. Is there anything wrong with the command ? The tar command would not work.. My Unix knowledge is somewhat rusty now.

Preparing the Driver Installation Package
============================================
Before the sk98lin driver installation script can be invoked, the
installation package needs to be unpacked:
1. Login as 'root'.
2. Unpack the driver installation package using the command
# tar xfvj install-???.tar.bz2
or
# bunzip2 -c install-???.tar.bz2 | tar xfv -


Thanks,

Anil
# 23  
Old 09-07-2008
Hi Anil

Following from Googling "D-LINK DGE-530T NIC centos"

Quote:
Re: D-link DGE-530T NIC and sk?? drivers
Posted by __3pm__ on 2008/2/25 8:40:35
As I understand this is a typical skge/sk98lin driver behavior. It cannot handle link up/down situations. I tried to use those nics in my centos xen host machines, then just sent them into trash.
So I consider marvell chipset based nics as unusable in linux production environment as long as someone wrote down a good linux driver.
I put intel e1000 nics and I am happy now.
Note that this NIC is 10/100/1000 which is why I recommended a 10/100 - these are mostly supported. Take it back and ask for something else - preferably Realtek chipset 10/100 based.
# 24  
Old 09-07-2008
Also I think it needs to be said, my personal experience with D-Link is not at all that stellar. Surf some CentOS forums and see what people there use.
# 25  
Old 09-08-2008
Quote:
Originally Posted by AnilAnand
Preparing the Driver Installation Package
============================================
Before the sk98lin driver installation script can be invoked, the
installation package needs to be unpacked:
1. Login as 'root'.
2. Unpack the driver installation package using the command
# tar xfvj install-???.tar.bz2
or
# bunzip2 -c install-???.tar.bz2 | tar xfv -
Hi Anil,

I'm catching up now to your earlier postings. Earlier you said you could not post some logs/output because it was not readable in Word or Notepad. That doesn't matter. In the Advanced Editor (of this forum!) click on the paper-clip and select the TXT extension and select the file to upload. We'll be able to see it just fine.

Back to your problem. The first question is: are your drivers working for this particular card? If you run /sbin/ifconfig -a and you see an eth0 device and you see a MAC address (that isn't all 0's), then the driver is working. Here's an example:
Code:
eth0      Link encap:Ethernet  HWaddr 00:50:8B:D3:C9:14
          inet addr:0.0.0.0  Bcast:255.255.255.255  Mask:0.0.0.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

Now that you have a second card in there, if your drivers are properly installed, you will see two ethernet devices.

Now, above at the top of your previous post quoted here, you say the instruction with the drivers claim they work with 2.4.18 and later. RHEL comes with 2.6 Linux, so there's no compatibility question there. The question is: are they correctly installed? You provided some instructions above, but they are not complete. Once you have extracted the package, you must do something. I downloaded the latest version, and the steps I took were as follows:

Code:
  gunzip xzf dge530t_driver_linux_610.tgz.gz
  tar xzf dge530t_driver_linux_610.tgz
  cd sk98lin
  make all
  insmod sk98lin.o

If you get no errors, do the "/sbin/ifconfig -a" command again and you should see the second ethernet device. Now, you want to run the dhclient with that device, which might now be named "eth1". So your command would be "dhclient eth1". (Make sure you have plugged the ethernet cable into the new interface!). If it's named "eth0" then it would be "dhclient eth0". How do you know which device is which? You run /sbin/lspci; the numbers are normally assigned in reverse order of those shown.

Once that works, you'll need to install the module into the right place and enable it for eth0 (to simplify future configuration, the second line below will force the device to operate as "eth0").
Code:
cp sk98lin.o /lib/modules/`uname -r`/kernel/drivers/net
echo "alias eth0 sk98lin" >>/etc/modules.conf


Last edited by otheus; 09-08-2008 at 10:25 AM..
# 26  
Old 09-10-2008
Hello Otheus, MickZA and Era,

Thanks for all your support. I tried installing sk98lin driver as suggested by Otheus. I downloaded the latest driver from the D-Link company site. With the 'make all' command it gave errors and there was no output(.o) file. I called for support from D-Link and they charge $39.95 per 30 minutes with NO guarantee that it will work. I don't mind paying if they guarantee it will work......

I feel that MickZA's suggestion is perhaps the best. I got a NIC card today from a friend. This card is made by Intel. The number on the card is: D5013-6003. Tried finding more infornation about it and it is 'HP 10/100-TX PCI LAN Adapter'.

Any suggestions about this new Intel card?

If I install this card, do I have to still install the driver? If yes what driver should I install? I suppose I can get the driver from the Intel website.

If I don't have to install the driver, will this NIC show up in the pull down menu in RHEL5 when configuring the network? I can check it when I get home tonight,but it will nice to know if someone has used it before. According to my friend, this is a very stable and old NIC that works in almost all PC's?

Will look forward to your valuable suggestions.

Best Regards,

Anil
# 27  
Old 09-10-2008
I believe that this card uses a Intel 10/100 chipset in which case all you need to do is physically install, power up and then configure via the network configuration screen. Let us know how it goes.
# 28  
Old 09-10-2008
One of the drivers from the e100 family which ships with Linux should hopefully work out of the box. lspci output would be helpful for determining this.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Modifying/Adding in the DNS server entry using shell script

Dear Experts. I need to add/modify the entries in the DNS server and this has to be achieved using shell script and below is the requirement, could you please let me know if a shell script can be written for this task? 1. Log in to primary DNS server 2. Check /etc/named.conf if zone is... (4 Replies)
Discussion started by: VKIRUPHAKARAN
4 Replies

2. Red Hat

DNS issue in Redhat 9

Hi all m newbie in linux and trying to setup my internal DNS server for local network.After messing with DNS for hours i am posting this. i have configured /etc/resolve.conf, hostname with domain name in /etc/sysconfig/network file,/etc/hosts file with local host entry and zone file... (1 Reply)
Discussion started by: Vaibhav.T
1 Replies

3. IP Networking

Configuring DNS Server in Linux Redhat

Can someone help with a detail step-by-step oh how to configure DNS server on Linux Server. - I need to have 3 IP addresses map to a single hostname. for clients I'm a Linux rookie. Thanks Oscar (1 Reply)
Discussion started by: FrankOscar
1 Replies

4. Red Hat

DNS for linux RedHat

Dear members, I am trying to set up a simple DNS but the problem is that when I ping the name of the IP address in the Reverse file, it does not recognise it. My code are as follows: Note that my IP address is 172.22.45.237. In my /etc/named.conf file, I have added the following lines ... (10 Replies)
Discussion started by: shakshakshuk
10 Replies

5. Red Hat

Dns configuration error in Redhat

Dear All I want to configure DNS in redhat linux. i am following these steps but when i restart the services it is showing status failed. Please any body can help me on urgent basis. #service named restart Stopping named: Starting named: ---------Edited in named.conf... (2 Replies)
Discussion started by: sahu.tapan
2 Replies

6. IP Networking

Hosts file ignored, no DNS entry but still routes!!

Hi all, I have an entry in my hosts file on a server called tractor as follows: 10.67.34.128 digger-m2m digger I have a DNS server configured but it doesn't seem to know about digger. When I do an nslookup on tractor for digger i get the following: new_dns1.oam.uk can't find digger: Non... (0 Replies)
Discussion started by: Donkey25
0 Replies

7. UNIX for Dummies Questions & Answers

DNS forward and reverse entry required thorugh scripting instead of manually done

HI GUrus, I am very mcuh new for this forum ....i need you all guys help for resolving my queries. As i have DNS server , platform is sunsolaris----8. We are using that serevr for resolving all network nodes. I am going to explain the process what i am following .... I could have... (2 Replies)
Discussion started by: leenagoyal
2 Replies

8. AIX

How to add DNS entry in AIX 5.3

we have using windows 2003 server as DNS Server, now we want add dns entry in AIX 5.3 server. can any body help (1 Reply)
Discussion started by: Balajipoola007
1 Replies

9. Solaris

subdomain name entry in DNS server

Hi all, I'm tying to add dns a A record to a dns server running on Solaris 10 on sun's SPARC machine i want to do the following add host name to point to an IP address for a machine running win2k3 both machines have real IPs and exposed to the internet where can i add the A records on DNS server... (2 Replies)
Discussion started by: h@foorsa.biz
2 Replies

10. UNIX for Dummies Questions & Answers

Updating DNS entry

what files do I edit?? or what am trying to get at here is that is this process of updating dns entries relatively simple or very complicated. please tell me about the files that are involved (2 Replies)
Discussion started by: TRUEST
2 Replies
Login or Register to Ask a Question