HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - Linux
 - >
 - rhel5 nic problem
 
Operating System - Linux
        1840213
        Members
    
    
        3326
        Online
    
    
        110162
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              Forums
Discussions
Forums
- Data Protection and Retention
 - Entry Storage Systems
 - Legacy
 - Midrange and Enterprise Storage
 - Storage Networking
 - HPE Nimble Storage
 
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
 - Appliance Servers
 - Alpha Servers
 - BackOffice Products
 - Internet Products
 - HPE 9000 and HPE e3000 Servers
 - Networking
 - Netservers
 - Secure OS Software for Linux
 - Server Management (Insight Manager 7)
 - Windows Server 2003
 - Operating System - Tru64 Unix
 - ProLiant Deployment and Provisioning
 - Linux-Based Community / Regional
 - Microsoft System Center Integration
 
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
Topic Options
			
				
					
	
			
		
	- Subscribe to RSS Feed
 - Mark Topic as New
 - Mark Topic as Read
 - Float this Topic for Current User
 - Bookmark
 - Subscribe
 - Printer Friendly Page
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
12-08-2010 10:37 PM
12-08-2010 10:37 PM
			
				
					
						
							rhel5 nic problem
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						in rhel 5 my nic card is working for same time and some time its not shown in the modules itself. how to check the nic card is working fine or not. what r the commands are need to check it
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
12-08-2010 11:22 PM
12-08-2010 11:22 PM
			
				
					
						
							Re: rhel5 nic problem
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi,
May be you can try these commands in Linux.
ifconfig $interface -- show the information for $interface (usually something like ifconfig eth0)
ethtool $interface
Thanks
					
				
			
			
				
	
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
May be you can try these commands in Linux.
ifconfig $interface -- show the information for $interface (usually something like ifconfig eth0)
ethtool $interface
Thanks
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
12-10-2010 12:06 PM
12-10-2010 12:06 PM
			
				
					
						
							Re: rhel5 nic problem
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						lspci 
is the card still there ? if it does not show then it is probably toast and in need of replacing.
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
is the card still there ? if it does not show then it is probably toast and in need of replacing.
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
12-10-2010 08:32 PM
12-10-2010 08:32 PM
			
				
					
						
							Re: rhel5 nic problem
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						There are many ways to check if the NIC card is working or not. 
1. On the hardware level, first check if the NIC port has the link light and activity light turning on. If yes, on to step 2.
2. Check the NIC is recognized in RHEL.
# dmesg
3. Check if the NIC interface shows an IP address. To do this:
# ifconfig ethX
If no IP address, consider the NIC configuration for either DHCP or static.
4. Next check if you can ping some other known ip address (in the same network):
# ping -I ethX 192.168.1.1
If you find any issues, check the driver being used for the NIC:
# ethtool -i ethX
If the driver information is displayed, check if the driver is loaded:
# lsmod
Note: you can pipe the output to grep for the driver name returned by ethtool. E.g.
# lsmod | grep
This should give you a fair idea of how the NIC is working, and where the possible issue could be. Good luck! 
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
1. On the hardware level, first check if the NIC port has the link light and activity light turning on. If yes, on to step 2.
2. Check the NIC is recognized in RHEL.
# dmesg
3. Check if the NIC interface shows an IP address. To do this:
# ifconfig ethX
If no IP address, consider the NIC configuration for either DHCP or static.
4. Next check if you can ping some other known ip address (in the same network):
# ping -I ethX 192.168.1.1
If you find any issues, check the driver being used for the NIC:
# ethtool -i ethX
If the driver information is displayed, check if the driver is loaded:
# lsmod
Note: you can pipe the output to grep for the driver name returned by ethtool. E.g.
# lsmod | grep
This should give you a fair idea of how the NIC is working, and where the possible issue could be. Good luck!
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP