Sponsored Content
Operating Systems Linux Red Hat Netdump over bonded interface ? Post 302336530 by shriyer on Wednesday 22nd of July 2009 09:55:37 AM
Old 07-22-2009
Netdump over bonded interface ?

Netdump over bonded interface ?
Hey there,..
I have heard from admins, that netdump usually fails over a bonded network interface.

I have written a multi-OS checkdump script , which checks if the respective crashdump utility on corresponding OS is correctly configured, space is available, etc etc etc.

For the netdump check, I wanted to add in a check to see if netdump is using bonded interface . How do I do that ? I can easily find out if the system has bonding enabled or if bond0 is up or down .
But I want to know if Netdump is going to use this bonded interface to send out the dump, or the usual interface ?

/etc/sysconfig/netdump doesnt give much of an idea. Does LOCALPORT setting have something to do with it ? It defaults to 6666.
I have minimal understanding about the networking side of this problem, could some one please tell me :
1. How do I find out which network interface (outgoing) netdump is currently configured to use ? How to check if its bonded or not ??

2. I also wanted to do a ethtool $NIC to check if the ethernet link is
down or up, so this brings back to finding out which network interface is used by netdump , eth0 , eth1 , bond0 ??? How can I find this out.

Thanks,
Shrikant
 

9 More Discussions You Might Find Interesting

1. Linux

netdump/netconsole module

I receive the error belong when attempting to load the netconsole module. Does anyone know how I can resolve this? I downloaded RPM from internal site, so it is trusted. >uname -a Linux indigo 2.6.9-34.ELsmp #1 SMP Fri Feb 24 16:56:28 EST 2006 x86_64 x86_64 x86_64 GNU/Linux > modprobe -a... (0 Replies)
Discussion started by: vada010
0 Replies

2. Red Hat

Problems with modules when netdump client starts

Hello, I'm installing a new netdump server and clients. When I try to start a netdump cliente I get the next error: /etc/init.d/netdump start ; echo $? netdump: cannot ping 172.17.128.150 Inicio de netdump /lib/modules/2.4.21-37.ELsmp/kernel/drivers/net/netconsole.o: invalid argument... (3 Replies)
Discussion started by: RuBiCK
3 Replies

3. UNIX for Advanced & Expert Users

Netdump client for FC12

Hi Folks, Do we have netdump client for Fedora 12 ? I have downloaded a netdump-server package for the my netdump-server but can't find netdump client for my FC12 client. When I installed it via yum, it says # yum install netdump Loaded plugins: fastestmirror, presto, security,... (1 Reply)
Discussion started by: linuxgeek
1 Replies

4. Solaris

Command line Interface or GUI Interface not shown on solaris

Dear all, I am a newbie in solaris and I need your advice. I have a Solaris version 5.9 installed on Sunfire V240. I am able to ssh the machine from putty remotely. My problem is that I cannot see the display from KVM switch I have connected to it. I need also to be able to see the GUI... (2 Replies)
Discussion started by: mbouster
2 Replies

5. SCO

Change SCO - GUI or Desktop interface to DOS based interface

Hi all I have installed a demo version of SCO OpenServer 5.0.2, I finally found it is Desktop Interface, I would like to know how to change its interface to dos based interface? If you have any ideas, please tell me then. Thank you (2 Replies)
Discussion started by: TinhNhi
2 Replies

6. IP Networking

Need a bridge from an ethernet interface to a serial interface

This is my situation DOS pc serial cable (sl0) Linux Pc eth1 192.168.0.10 <-------------------->192.168.0.2 <------------>192.168.0.1 (router) I connected the linux pc and the dos pc with a SLIP (serial line internet protocol), so they can communicate in the sl0 interface. ... (3 Replies)
Discussion started by: mghis
3 Replies

7. Red Hat

how to configure netdump to copy the crash in the server itself??

hi, i would like to configure netdump, but saving the var/crash in the server itself, not in another server. could anybody tell me if this is possible? thanks (4 Replies)
Discussion started by: pabloli150
4 Replies

8. UNIX for Dummies Questions & Answers

Adding a network interface to a bonded interface

I have a RHEL 5 system with a bonded interface configure using only one network port (eth0). So I have config file for ifcfg-bond0 and ifcfg-eth. I'd like to configure eth5 to be the second SLAVE in the bond. My question is, after I modify ifcfg-eth5, can I add eth5 to the bond0 interface without... (1 Reply)
Discussion started by: westmoreland
1 Replies

9. AIX

Is it possible to configure bonding over bonded interface in AIX?

Hi Everyone, Is it possible to configure bonding over bonded interface in AIX? For example: server has for NIC port: ent0 ent1 ent2 ent3 First I create a EtherChannel ent4 from ent0 and ent1. and then I create a EtherChannel ent5 from ent2 and ent3. Can I create a EtherChannel... (1 Reply)
Discussion started by: nnnnnnine
1 Replies
IFSCHEME(8)							     Commands							       IFSCHEME(8)

NAME
ifscheme - scheme control for network interfaces SYNOPSIS
ifscheme [-v] [[-s] newscheme] mapping <interface> script ifscheme-mapping DESCRIPTION
ifscheme allows you to change network configuraton schemes or query the current scheme. It integrates with the ifup(8) command and inter- faces(5). For example, you might use this program to configure a "home" scheme and a "work" scheme for a network device on a laptop. When you move between home and work, a simple command can reconfigure your networking. If you run the program with no parameters, it will tell what the current network scheme is. The ifscheme-mapping utility is used to tell the ifup and ifdown utilities about the current scheme. OPTIONS
-v --verbose Run in verbose mode. This is passed in to the ifup and ifdown programs as well. -l --list list all schemes available/defined in /etc/network/interfaces. newscheme -s newscheme --scheme newscheme Change to a new network configuration scheme. When the scheme is changed, network interfaces that were using the old scheme will be taken down and brought back up to use the new configuration scheme. -s or --scheme are mandatory if newscheme begins with a -. CONFIGURATION
To make the program do anything useful when a scheme is selected, you must edit /etc/network/interfaces to add a mapping for the interface (or interfaces) that can be controlled on a per-scheme basis. Suppose you want to control eth0 in this way. You might have an existing eth0 configuraton in there, such as: auto eth0 iface eth0 inet static address 192.168.1.5 netmask 255.255.255.0 gateway 192.168.1.1 To change this so you can chose between static routing and dhcp, replace it with the following (it helps to ifdown the interface first). auto eth0 mapping eth0 script ifscheme-mapping iface eth0-home inet static address 192.168.1.5 netmask 255.255.255.0 gateway 192.168.1.1 iface eth0-work inet dhcp Now if you run "ifscheme home" and ifup the interface, you'll get the eth0-home configuration stanza. If you run "ifscheme work", it will be changed to the eth0-work stanza. You can add additional stanzas as desired, but the label must always be of the form <hardware inter- face>-<scheme name>. If you have a second interface (perhaps a wireless network card on eth1), you can duplicate the above for that interface, changing the eth0 and the configuration details as appropriate, but remember to add an iface stanza for every scheme name for the second interface. FILES
/etc/network/interfaces the interfaces definition file /etc/network/run/scheme the current scheme /etc/network/run/ifstate a record of the current state of the interfaces, managed by ifup and ifdown BUGS
All schemed interfaces will have the same scheme. Any schemed interface which does not have an entry for the current scheme and is not configured when the scheme is changed will not be suc- cessfully configured when it is brought up. SEE ALSO
interfaces(5) ifup(8) ifdown(8) DISTRIBUTION
Redistribution is subject to the GNU public license. AUTHORS
Joey Hess <joey@kitenet.net>, Peter Wilson <pwilson@cs.hmc.edu> IFSCHEME(8)
All times are GMT -4. The time now is 08:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy