Strange eth0 interface traffic

For almost a week now, I noticed that there is some traffic over the eth0 interface every 3 seconds (90 - 180 B/s). Even when I close all applications like Firefox and Kmail.  I don't know what to google on because I don't know what this all about. So, any hints, suggestions are very welcome.

Oh yes, windows boxes are or used to be very chatty
I'm surprised you don't get more traffic from your windows box.
Oh and in this case as it is an incoming connection it is normal that netstat | grep doesn't output anything, I was mostly thinking about outgoing connections.
If you are using dhcp then things can be simple or tricky, if you can configure your router to always give a certain card the same ip then things are easy, just add the correct entries to both hosts files, if you can't then IPs may change and the annoyance may come back.
I guess you shouldn't worry too much about that though, it seems to be legitimate traffic and a few bytes every 3s is not something that will slow down your home network

Similar Messages

  • Strange Exchange 2010 Traffic

    Hi Guys,
    I've a strange and mysterious Traffic dropping all the network caused by one of the HUB\CAS servers.
    We have Exchange 2010 Environment 2 DAG Members and 2 HUB\CAS Servers we are using WNLB as a load-balancing Solution.
    We have two physical hosts and we virtualized  the all servers mailbox and HUB\CAS 
    MBX-01 --  HUB-CAS-01  on HV1
    MBX-02 --  HUB-CAS-02  on HV2
    When Both servers are up strange traffic begin and all telephony system "Avaia" go down.
    I've disabled the replication on the MAPI network on both DAG members to ensure that the replication traffic goes throw the private network and changed the mode of NLB " Multicast and then Unicast" and nothing changed any ideas.
    All servers running Exchange 2010 SP3.
    Thanks 
    Best Regards 
    Mohamed Attia

    Hi,
    Based on the description, you used WNLB as a load-balancing Solution, however, it is recommended to use the HLB instead in the production environment.
    From the "Network requirements" topic in the article
    Planning for High Availability and Site Resilience, DAG must have a single MAPI network, which is used by a DAG member to communicate with other servers (for example, other Exchange 2013 servers or directory servers), and zero or more Replication networks,
    which are networks dedicated to log shipping and seeding.
    So nothing changed, even though you disabled the replication on the MAPI network on both DAG members. It is the expected behavior.
    Do you connect the telephony system "Avaia" to an Unified Messaging server?
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Monitoring interface traffic

    I'm using a solution to monitor the traffic passing through the interface
    SWCORE connecting with my router.
    The Linux machine (sniff) has two interfaces (eth0 and eth1)
    Etho (manages the machine) connected to the interface to another interface g1/18
    (Sniff) connected in g1/27.
    Add the following command:
    monitor session 2 source interface Gi1/48
    monitor session 2 destination interface Gi1/27
    But I don't capture nothing.
    I show monitor out following:
    Session 2
    Type : Local Session
    Source Ports :
    Both : Gi1/48
    Destination Ports : Gi1/27
    Encapsulation : Native
    Ingress : Disabled
    Learning : Disabled
    Do what doing wrong? Help me??

    try this  "monitor session 2 source interface Gi1/48 ?"
    Doesn't if show an option to span ingoing, outgoing or both traffic directions?
    I think you need both
    Do you see traffic on the spanport Gi1/27 if you do a  "show interface Gi1/27"  ?
    The counters should go up
    The interface Eth0 should be in promiscuous mode to capture the traffic other then for its own mac address or broad/multicast
    Cheers,
    Michel

  • Issue in Sub-interface traffic on cisco 7609-s router

    Hello please support,
    I configured sub-interfaces and it is working properly, but some time sub-interface show traffic more then physical interface .
    Like 
    int gi 3/32              0.13 Mbps  12:00 PM
    int gi 3/32.11       855 Mbps   12:00 PM
    as per my knowledge physical interface have cumulative traffic of all sub-interfaces. 
    interface GigabitEthernet3/32
     no ip address
    interface GigabitEthernet3/32.10
     encapsulation dot1Q 10
     ip address 172.20.128.77 255.255.255.252
     ip ospf network point-to-point
     ip ospf bfd
     bfd interval 50 min_rx 50 multiplier 5
     no bfd echo
     no cdp enable
    interface GigabitEthernet3/32.11
     description interlink MPLS
     encapsulation dot1Q 11
     ip address 172.20.129.73 255.255.255.252
     ip ospf network point-to-point
     mpls ip
     mpls label protocol ldp
    Regards,
    Damodar Nagar

    I have not that graph so I am just guessing that you are noticing the difference between policing and shaping. It seems to me you are applying these techniques on each platform on a different way. Try to shape/police in the same order or only to shape.
    Hope to help
    Alessio
    Sent from Cisco Technical Support iPad App

  • Strange User Interface Behaviour

    Dear all, I have a "funny" problem. Below is my code :
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Interface extends JFrame implements ActionListener
         Processes processes_this;
         JButton Bttn_Add, Bttn_Left, Bttn_Right, Bttn_Up, Bttn_Down, Bttn_Remove, Bttn_Test;
         JLabel Label_FocusTitle, Label_Focus, Label_XTitle, Label_X, Label_YTitle, Label_Y;
         JTextArea TextArea_ComponentList;
         JMenuBar MenuBar_AllMenu;
         JMenu Menu_File, Menu_Edit;
         JMenuItem MenuItem_New, MenuItem_Open, MenuItem_Close, MenuItem_Save, MenuItem_SaveAs, MenuItem_Print, MenuItem_Exit;
         JMenuItem MenuItem_Add, MenuItem_Remove;
         JPanel Panel_Main, Panel_Format, Panel_Button, Panel_Arrow;
         JScrollPane ScrollPane_TextArea;
         SpringLayout layout = new SpringLayout();
         public Interface(Processes p)
              processes_this = p;
              processes_this.recordLog("Start Interface.Interface");
              this.initButton();
              this.initLabel();
              this.initTextArea();
              this.initMenu();
              this.initPanel();
              this.setConstraint();
              this.initialCondition();
              this.initFrame();
              processes_this.recordLog("End Interface.Interface");
         private void initButton()
              processes_this.recordLog("Start Interface.initButton");
              Bttn_Add = new JButton("ADD");
              Bttn_Add.setPreferredSize(new Dimension(125,40));
              Bttn_Add.setActionCommand(GenVar.General.ACTION_COMMAND_ADD);
              Bttn_Add.addActionListener(this);
              Bttn_Remove = new JButton("REMOVE");
              Bttn_Remove.setPreferredSize(new Dimension(125,40));
              Bttn_Remove.setActionCommand(GenVar.General.ACTION_COMMAND_REMOVE);
              Bttn_Remove.addActionListener(this);
              Bttn_Test = new JButton("TEST");
              Bttn_Test.setPreferredSize(new Dimension(125,40));
              Bttn_Test.setActionCommand(GenVar.General.ACTION_COMMAND_TEST);
              Bttn_Test.addActionListener(this);
              Bttn_Up = new JButton("U");
              Bttn_Up.setPreferredSize(new Dimension(50,80));
              Bttn_Up.setActionCommand(GenVar.General.ACTION_COMMAND_UP);
              Bttn_Up.addActionListener(this);
              Bttn_Down = new JButton("D");
              Bttn_Down.setPreferredSize(new Dimension(50,80));
              Bttn_Down.setActionCommand(GenVar.General.ACTION_COMMAND_DOWN);
              Bttn_Down.addActionListener(this);
              Bttn_Left = new JButton("L");
              Bttn_Left.setPreferredSize(new Dimension(80,50));
              Bttn_Left.setActionCommand(GenVar.General.ACTION_COMMAND_LEFT);
              Bttn_Left.addActionListener(this);
              Bttn_Right = new JButton("R");
              Bttn_Right.setPreferredSize(new Dimension(80,50));
              Bttn_Right.setActionCommand(GenVar.General.ACTION_COMMAND_RIGHT);
              Bttn_Right.addActionListener(this);
              processes_this.recordLog("End Interface.initButton");
         private void initLabel()
              processes_this.recordLog("Start Interface.initLabel");
              Label_FocusTitle = new JLabel("Focus : ");
              Label_FocusTitle.setFont(new Font("Times New Roman",Font.BOLD,16));
              Label_Focus = new JLabel("focus");
              Label_Focus.setFont(new Font("Times New Roman",Font.BOLD,16));
              Label_XTitle = new JLabel("X : ");
              Label_XTitle.setFont(new Font("Times New Roman",Font.BOLD,16));
              Label_X = new JLabel("999");
              Label_X.setFont(new Font("Times New Roman",Font.BOLD,16));
              Label_YTitle = new JLabel("Y : ");
              Label_YTitle.setFont(new Font("Times New Roman",Font.BOLD,16));
              Label_Y = new JLabel("999");
              Label_Y.setFont(new Font("Times New Roman",Font.BOLD,16));
              processes_this.recordLog("End Interface.initLabel");
         private void initTextArea()
              processes_this.recordLog("Start Interface.initTextArea");
              TextArea_ComponentList = new JTextArea("");
              TextArea_ComponentList.setEditable(false);
              ScrollPane_TextArea = new JScrollPane(TextArea_ComponentList);
              //ScrollPane_TextArea.setPreferredSize(new Dimension(168, 150));
              processes_this.recordLog("End Interface.initTextArea");
         private void initMenu()
              processes_this.recordLog("Start Interface.initMenu");
              MenuBar_AllMenu = new JMenuBar();
              MenuItem_New = new JMenuItem("New");
              MenuItem_New.setMnemonic(KeyEvent.VK_N);
              MenuItem_New.setActionCommand(GenVar.General.ACTION_COMMAND_NEW);
              MenuItem_New.addActionListener(this);
              MenuItem_Open = new JMenuItem("Open");
              MenuItem_Open.setMnemonic(KeyEvent.VK_O);
              MenuItem_Open.setActionCommand(GenVar.General.ACTION_COMMAND_OPEN);
              MenuItem_Open.addActionListener(this);
              MenuItem_Close = new JMenuItem("Close");
              MenuItem_Close.setMnemonic(KeyEvent.VK_C);
              MenuItem_Close.setActionCommand(GenVar.General.ACTION_COMMAND_CLOSE);
              MenuItem_Close.addActionListener(this);
              MenuItem_Save = new JMenuItem("Save");
              MenuItem_Save.setMnemonic(KeyEvent.VK_S);
              MenuItem_Save.setActionCommand(GenVar.General.ACTION_COMMAND_SAVE);
              MenuItem_Save.addActionListener(this);
              MenuItem_SaveAs = new JMenuItem("Save As");
              MenuItem_SaveAs.setMnemonic(KeyEvent.VK_A);
              MenuItem_SaveAs.setActionCommand(GenVar.General.ACTION_COMMAND_SAVEAS);
              MenuItem_SaveAs.addActionListener(this);
              MenuItem_Print = new JMenuItem("Test Print");
              MenuItem_Print.setMnemonic(KeyEvent.VK_P);
              MenuItem_Print.setActionCommand(GenVar.General.ACTION_COMMAND_PRINT);
              MenuItem_Print.addActionListener(this);
              MenuItem_Exit = new JMenuItem("Exit");
              MenuItem_Exit.setMnemonic(KeyEvent.VK_X);
              MenuItem_Exit.setActionCommand(GenVar.General.ACTION_COMMAND_EXIT);
              MenuItem_Exit.addActionListener(this);
              MenuItem_Add = new JMenuItem("Add");
              MenuItem_Add.setMnemonic(KeyEvent.VK_A);
              MenuItem_Add.setActionCommand(GenVar.General.ACTION_COMMAND_ADD);
              MenuItem_Add.addActionListener(this);
              MenuItem_Remove = new JMenuItem("Remove");
              MenuItem_Remove.setMnemonic(KeyEvent.VK_R);
              MenuItem_Remove.setActionCommand(GenVar.General.ACTION_COMMAND_REMOVE);
              MenuItem_Remove.addActionListener(this);
              Menu_File = new JMenu("File");
              Menu_File.setMnemonic(KeyEvent.VK_F);
              Menu_File.add(MenuItem_New);
              Menu_File.add(MenuItem_Open);
              Menu_File.addSeparator();
              Menu_File.add(MenuItem_Save);
              Menu_File.add(MenuItem_SaveAs);
              Menu_File.addSeparator();
              Menu_File.add(MenuItem_Print);
              Menu_File.add(MenuItem_Exit);
              Menu_Edit = new JMenu("Edit");
              Menu_Edit.setMnemonic(KeyEvent.VK_E);
              Menu_Edit.add(MenuItem_Add);
              Menu_Edit.add(MenuItem_Remove);
              MenuBar_AllMenu.add(Menu_File);
              MenuBar_AllMenu.add(Menu_Edit);
              processes_this.recordLog("End Interface.initMenu");
         private void initPanel()
              processes_this.recordLog("Start Interface.initPanel");
              Panel_Button = new JPanel(layout);
              Panel_Button.setPreferredSize(new Dimension(500,100));
              Panel_Button.setBackground(Color.RED);
              Panel_Button.add(Bttn_Add);
              Panel_Button.add(Bttn_Remove);
              Panel_Button.add(Bttn_Test);
              Panel_Button.add(Label_FocusTitle);
              Panel_Button.add(Label_Focus);
              Panel_Button.add(Label_XTitle);
              Panel_Button.add(Label_X);
              Panel_Button.add(Label_YTitle);
              Panel_Button.add(Label_Y);
              Panel_Arrow = new JPanel(layout);
              Panel_Arrow.setPreferredSize(new Dimension(300,250));
              Panel_Arrow.setBackground(Color.BLUE);
              Panel_Arrow.add(Bttn_Up);
              Panel_Arrow.add(Bttn_Down);
              Panel_Arrow.add(Bttn_Left);
              Panel_Arrow.add(Bttn_Right);
              Panel_Format = new JPanel(layout);
              Panel_Format.setPreferredSize(new Dimension(500,550));
              Panel_Main = new JPanel(layout);
              Panel_Main.setPreferredSize(new Dimension(800,600));
              Panel_Main.setBackground(Color.GREEN);
              Panel_Main.add(Panel_Button);
              Panel_Main.add(Panel_Arrow);
              Panel_Main.add(Panel_Format);
              processes_this.recordLog("End Interface.initPanel");
         private void setConstraint()
              processes_this.recordLog("Start Interface.setConstraint");
              layout.putConstraint(SpringLayout.WEST, Bttn_Up, 125, SpringLayout.WEST, Panel_Arrow);
              layout.putConstraint(SpringLayout.NORTH, Bttn_Up, 15, SpringLayout.NORTH, Panel_Arrow);
              layout.putConstraint(SpringLayout.WEST, Bttn_Down, 125, SpringLayout.WEST, Panel_Arrow);
              layout.putConstraint(SpringLayout.NORTH, Bttn_Down, 63, SpringLayout.SOUTH, Bttn_Up);
              layout.putConstraint(SpringLayout.WEST, Bttn_Left, 35, SpringLayout.WEST, Panel_Arrow);
              layout.putConstraint(SpringLayout.NORTH, Bttn_Left, 100, SpringLayout.NORTH, Panel_Arrow);
              layout.putConstraint(SpringLayout.WEST, Bttn_Right, 70, SpringLayout.EAST, Bttn_Left);
              layout.putConstraint(SpringLayout.NORTH, Bttn_Right, 100, SpringLayout.NORTH, Panel_Arrow);
              layout.putConstraint(SpringLayout.WEST, Bttn_Add, 40, SpringLayout.WEST, Panel_Button);
              layout.putConstraint(SpringLayout.NORTH, Bttn_Add, 15, SpringLayout.NORTH, Panel_Button);
              layout.putConstraint(SpringLayout.WEST, Bttn_Test, 10, SpringLayout.EAST, Bttn_Add);
              layout.putConstraint(SpringLayout.NORTH, Bttn_Test, 15, SpringLayout.NORTH, Panel_Button);
              layout.putConstraint(SpringLayout.WEST, Bttn_Remove, 10, SpringLayout.EAST, Bttn_Test);
              layout.putConstraint(SpringLayout.NORTH, Bttn_Remove, 15, SpringLayout.NORTH, Panel_Button);
              layout.putConstraint(SpringLayout.WEST, Label_FocusTitle, 10, SpringLayout.WEST, Panel_Button);
              layout.putConstraint(SpringLayout.SOUTH, Label_FocusTitle, -5, SpringLayout.SOUTH, Panel_Button);
              layout.putConstraint(SpringLayout.WEST, Label_Focus, 5, SpringLayout.EAST, Label_FocusTitle);
              layout.putConstraint(SpringLayout.SOUTH, Label_Focus, -5, SpringLayout.SOUTH, Panel_Button);
              layout.putConstraint(SpringLayout.EAST, Label_Y, -10, SpringLayout.EAST, Panel_Button);
              layout.putConstraint(SpringLayout.SOUTH, Label_Y, -5, SpringLayout.SOUTH, Panel_Button);
              layout.putConstraint(SpringLayout.EAST, Label_YTitle, -5, SpringLayout.WEST, Label_Y);
              layout.putConstraint(SpringLayout.SOUTH, Label_YTitle, -5, SpringLayout.SOUTH, Panel_Button);
              layout.putConstraint(SpringLayout.EAST, Label_X, -30, SpringLayout.WEST, Label_YTitle);
              layout.putConstraint(SpringLayout.SOUTH, Label_X, -5, SpringLayout.SOUTH, Panel_Button);
              layout.putConstraint(SpringLayout.EAST, Label_XTitle, -5, SpringLayout.WEST, Label_X);
              layout.putConstraint(SpringLayout.SOUTH, Label_XTitle, -5, SpringLayout.SOUTH, Panel_Button);
              layout.putConstraint(SpringLayout.WEST, Panel_Button, 0, SpringLayout.WEST, Panel_Main);
              layout.putConstraint(SpringLayout.NORTH, Panel_Button, 0, SpringLayout.NORTH, Panel_Main);
              layout.putConstraint(SpringLayout.EAST, Panel_Arrow, 0, SpringLayout.EAST, Panel_Main);
              layout.putConstraint(SpringLayout.SOUTH, Panel_Arrow, 0, SpringLayout.SOUTH, Panel_Main);
              layout.putConstraint(SpringLayout.WEST, Panel_Format, 0, SpringLayout.WEST, Panel_Main);
              layout.putConstraint(SpringLayout.SOUTH, Panel_Format, 0, SpringLayout.SOUTH, Panel_Main);
              processes_this.recordLog("End Interface.setConstraint");
         private void initFrame()
              processes_this.recordLog("Start LoginScreen.initFrame");
              this.setTitle("TVP1500 Form Creator");
              this.setIconImage(new ImageIcon("Icon.JPG").getImage());
              this.setName(GenVar.General.FRAME_NAME_MAIN);
              this.getContentPane().add(Panel_Main, BorderLayout.CENTER);
              this.setJMenuBar(MenuBar_AllMenu);
              this.setResizable(false);
              this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              this.pack();
              Dimension Dimension_Temp = this.getSize();
              this.setLocation((processes_this.getScreenWidth()-Dimension_Temp.width)/2,(processes_this.getScreenHeight()-Dimension_Temp.height)/2);
              this.setVisible(true);
              processes_this.recordLog("End LoginScreen.initFrame");
         public void initialCondition()
              processes_this.recordLog("Start LoginScreen.initialCondition");
              Label_Focus.setText("");
              Label_X.setText("   ");
              Label_Y.setText("   ");
              Bttn_Add.setEnabled(false);
              Bttn_Test.setEnabled(false);
              Bttn_Remove.setEnabled(false);
              Bttn_Up.setEnabled(false);
              Bttn_Down.setEnabled(false);
              Bttn_Left.setEnabled(false);
              Bttn_Right.setEnabled(false);     
              processes_this.recordLog("End LoginScreen.initialCondition");
         public void actionPerformed(ActionEvent e)
              processes_this.recordLog("Start Interface.actionPerformed");
              if(e.getActionCommand().equals(GenVar.General.ACTION_COMMAND_NEW))
                   processes_this.createNewFile();
              processes_this.recordLog("End Interface.actionPerformed");
         public void makeItGone()
              processes_this.recordLog("Start Interface.makeItGone");
              this.setVisible(false);
              processes_this.recordLog("End Interface.makeItGone");     
         public void makeItAppear()
              processes_this.recordLog("Start Interface.makeItAppear");
              this.setVisible(true);
              processes_this.recordLog("End Interface.makeItAppear");     
         public void enableMe()
              processes_this.recordLog("Start Interface.enableMe");
              this.setEnabled(true);
              processes_this.recordLog("End Interface.enableMe");
         public void disableMe()
              processes_this.recordLog("Start Interface.disableMe");
              this.setEnabled(false);
              processes_this.recordLog("End Interface.disableMe");
         public void addFormToPanel(JPanel p)
              processes_this.recordLog("Start Interface.addFormToPanel");
              Panel_Format.add(p);
              layout.putConstraint(SpringLayout.WEST, p, 50, SpringLayout.WEST, Panel_Format);
              layout.putConstraint(SpringLayout.NORTH, p, 100, SpringLayout.NORTH, Panel_Format);
              Panel_Format.revalidate();
              this.repaint();
              processes_this.recordLog("End Interface.addFormToPanel");
    }At the initial calling, the display seems ok. But when I call addFormToPanel(JPanel p), in sudden my JFrame only show the Panel_Arrow, started from position (0,0). Does anyone can help me with this issue ? Thank you very much.....

    UPDATE...
    I have been in safe mode for a while... When I was login into safe mode the I suffered one of those graphical glitches... I took a photo. After that, when it finished to load the screen went black and nothing more happened... The computer was working... but not graphical interface at all... just a black screen.
    Then, I decided to force to turn off.... and try again to login into safe mode. That time worked well and normal.
    However, while I was in safe mode the mac behaved strange graphically, as you can see in this video. I really do not know if that is a normal behaviour in safe mode. Finally, while I was finishing the email to reply the apple support a heavy graphical glitch happened after the screen went black, as you can see in these photos ( 1, 2 and 3). I decided to turn of the computer and back to the normal mode.
    I have collected another console log, it can be seen in the previous link to the error logs or in this link. The glitch occurred around 14.10 h today.
    Thanks in advance for the help and your time!!! it is really appreciated!!!!

  • Intra-Interface-Traffic fails at first try - second try works

    Hi,
    we are running two ASA5550 as fail-over.
    Everything works fine. But there is still a little "bug".
    same-security-traffic permit intra-interface
    is enabled.
    Now, let's open an PostgreSQL-Connection from 10.10.1.22 to 10.10.1.8 (same subnet, same interface "IT").
    First try (using psql for a connection), I get
    11:27:56|106015|10.10.1.22|51019|10.10.1.8|5432|Deny TCP (no connection) from 10.10.1.22/51019 to 10.10.1.8/5432 flags RST  on interface IT
    11:27:56|302014|10.10.1.22|51019|10.10.1.8|5432|Teardown TCP connection 290800318 for IT:10.10.1.22/51019 to IT:10.10.1.8/5432 duration 0:00:00 bytes 0 TCP Reset-O
    11:27:56|302013|10.10.1.22|51019|10.10.1.8|5432|Built inbound TCP connection 290800318 for IT:10.10.1.22/51019 (10.10.1.22/51019) to IT:10.10.1.8/5432 (10.10.1.8/5432)
    11:27:53|302014|10.10.1.22|51019|10.10.1.8|5432|Teardown TCP connection 290800140 for IT:10.10.1.22/51019 to IT:10.10.1.8/5432 duration 0:00:00 bytes 0 TCP Reset-O
    11:27:53|302013|10.10.1.22|51019|10.10.1.8|5432|Built inbound TCP connection 290800140 for IT:10.10.1.22/51019 (10.10.1.22/51019) to IT:10.10.1.8/5432 (10.10.1.8/5432)
    in the ASA log.
    psql now runs into a time out.
    Starting the second try, the ASA doesn't report any packets and the connection is established.

    Phillip,
    Based on the syslogs the reset packet is coming from another device "Reset-O". The best way to troubleshoot this issue will be applying captures on the IT interface in order to track the source MAC of the reset and to have a better picture of the traffic flow.
    Luis Silva

  • Monitoring tunnel interface traffic

    We've integrated WLSM with IDSM-2 and want to monitor wireless traffic terminating on tunnel interfaces. Can't find a way to configure SPAN or VACL on IOS 6500 to capture traffic. Any suggestions?

    Try this:
    http://www.cisco.com/en/US/products/hw/vpndevc/ps4077/products_configuration_guide_chapter09186a0080459221.html

  • Disable eth0 interface on boot

    Hi, I have both wired and wireless eth0 and wlan0 interfaces
    I want only to use only wireless, but on boot if I have the eth0 cable disconnected it does not continuing boot until cable connected.
    But if I have cable connected it boot normaly.
    Can I disable eth0 on boot to avoid lock on boot process if cable not connected?
    Regards

    You might try:
    ewaller@odin:~ 1001 %pacman -Ss cable
    extra/ifplugd 0.28-11
    A daemon which brings up/down network interfaces upon cable insertion/removal.
    ewaller@odin:~ 1002 %
    Put it in the DAEMONS array before network.
    How are you configuring the Wireless?  Wicd and Networkmanger should both handle this

  • IDS-4210 picks up what IPS-4240 misses, strange duplex/interface problems

    I just installed a IPS-4240 inline on our primary internet inbound connection. I decided to leave the 4210 in place for a week or two while I tuned the signatures. It is receiving a span of the same traffic that the 4240 is receiving.
    I noticed today that the 4210 is picking up sig 3250 and the 4240 is no. The first thing I checked to make sure that the 4240 has this signature enabled, and it is. Anyone have any thoughts? BTW, All sensors are on the same version 5.1.1 and running s211 and managed through VMS.
    I would also like to mention that I had issues on the 4240 and its interfaces. Management only runs at half duplex and the interfaces that connect to our PIX. I ended up having to put a switch between the 4240 and the Pix 515e to solve the duplex issues.
    Anyone have any thoughts on this part

    I had the same duplex problem with my 4240 sensor connecting to my PIX. The only way I could get it to work without errors is to set both the sensor and the PIX interfaces to auto/auto. I worked with Cisco on this problem. No resolution, just the workaround. As far as sig 3250, IPS and IDS signatures may be a little different. I assume you span from the inside and run your in-line outside your firewall? If this is the case, then the 4240 sensor may see different traffic than the 4210.

  • VIPCA showing only eth0 interface

    Hi all,
    I'm installing Oracle 10g R2 2 node RAC on RHEL4 U4 for R&D purpose. And i'm following the steps given in http://www.oracle.com/technology/pub/articles/hunter_rac10gr2.html article.
    While installing clusterware software asked me to run orainstRoot.sh and root.sh script on both nodes. On node1 both the scripts ran succesfully and on node2 root.sh script gave the following error..
    The given interface(s), "eth0" is not public. Public interfaces should be used to configure virtual IPs.
    It is given in the doc that, the above error can be resolved by running the VIPCA GUI utility on the node where this error is occurred.. when i ran VIPCA utility on Node2..in Network Interfaces section, it is showing only eth0 (public) and it is not showing eth1. But in the above given link, it is mentioned that we need to select both eth0 and eth1.
    Can anybody tell me what might be the problem?
    Thanks,
    Praveen

    Hi,
    Please upload/review your ifconfig -a output on both nodes. you should see 3 IPs on each node, one for the interconnect, one for the public and one for the virtual. These should be persistent after a reboot, and match. eth0 on one node should be eth0 on the second, etc.
    If this is done, you should not have an issue with VIPCA.
    Thanks,
    Idan.

  • Issue with eth0 interface

    Have a rh9 system, with /etc/sysconfig/network-scripts/ifcfg-eth0 contents :
    DEVICE=eth0
    IPADDR=140....
    NETMASK=255.255.254.0
    BROADCAST=140...
    GATEWAY=140....
    BOOTPROTO=static
    ONBOOT=yes
    During system bootup, eth0 never comes up automatically. "service network status" shows eth0 in "configured devices" only, not in "currently active devices".
    "chkconfig --list network" shows :
    network 0:off 1:off 2:on 3:on 4:on 5:on 6:off
    After bootup, typing "service network reload" from command line activates eth0. Not sure what else could be stopping eth0 from coming up automatically upon reboot.
    Any suggestions ? Thanks.

    hi
    Try "dmesg|more" look for you dev(eth0 ) see if the is any errors anound it
    Gilles

  • Statically assign xenbr0 (eth0) interface to one specific NIC

    Hi,
    I have multiple NICs on my Oracle VM server. Everytime it reboots, xenbr0 (eth0) will be dynamically assigned to one of the NICs card, depending on which one comes up first. My xenbr0 is assigned a public address. That means that I will not be able to connect to the server remotely if it is assigned to a different NIC. Can someone tell me how I can assign xenbr0 to one specific NIC statically?
    Regards,
    Ming
    Edited by: user2872557 on Sep 12, 2011 2:19 PM

    user2872557 wrote:
    I have multiple NICs on my Oracle VM server. Everytime it reboots, xenbr0 (eth0) will be dynamically assigned to one of the NICs card, depending on which one comes up first. My xenbr0 is assigned a public address. That means that I will not be able to connect to the server remotely if it is assigned to a different NIC. Can someone tell me how I can assign xenbr0 to one specific NIC statically?What version of Oracle VM are you talking about here? In Oracle VM 2.2, it automatically creates xenbrX bridges for each ethX device it finds. If this is changing, it means your NICs are changing on boot. You need to ensure that your ifcfg-ethX device configurations have HWADDR fields to fix them to a particular NIC.
    In Oracle VM 3.0, we do not create xenbrX bridges by default and this is all handled by the Manager.

  • Bringing up interface eth0: e1000 device eth0 does not seem to be present, delaying initialization.

    I performed a software reboot on the MSE3310.  After the reboot the MSE was no longer visible on the network.  I went and consoled into the device and it was operational.  I ran the msed stop and msed start commands.  I got this message when it tried to load eth0
    Bringing up interface eth0:  e1000 device eth0 does not seem to be present, delaying initialization.
    [FAILED]
    Earlier in the day I had updgraded the firmware from 6.0 to 7.0.230.0.
    Can I recover the eth0?  Is this related to the firmware upgrade? 
    Thanks.
    Jason

    Tarik,
    This procedure worked great!  After adding the HWADDR parameter to the eth0 config file and rebooting the server, we are now able to access the server on the network again.  Thank you very much for the quick reply!
    Here is the procedure if others need this.
    ifconfig -a showed the eth0 interface was renamed to _tmp462132856
    [root@MSE-CPW-01 ~]# ifconfig -a
    __tmp462132856 Link encap:Ethernet  HWaddr 00:15:17:F1:4D:C7
              BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
              Interrupt:169 Memory:e8180000-e81a0000
    eth1      Link encap:Ethernet  HWaddr 00:15:17:F1:4D:C8
              BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
    Then issued
    vi /etc/sysconfig/network-scripts/ifcfg-eth0
    to edit the file and add the HWADDR=xx:xx:xx:xx:xx:xx
    Then issued a 'shutdown -r now' to reboot the server
    After a reboot, network connectivity was restored!
    Thanks!
    Brian

  • Can wicd simultaneously connect two networks via different interfaces

    hi, recently, I installed wicd. I am tired for figuring out of NetworkManager stuff.
    however, for same reasons, I could not configure my ethernet and wireless interface at the same time.
    for example, in my case, I have enp0s25 and wlp3s0 interfaces. however, wicd only allow me to connect one at a time. especially when I connected enp0s25 via wicd-curses, it actually disabled the wlp3s0. (the interface is set down by wicd, but I still can see the available network, very strange)
    is there a way to deal with that ?

    Wicd is kinda strange, it usually picks the wired over the wireless (and there is an option for that).  You can get it, by allowing wicd to connect wirelessly, and manually dhclient the eth0 interface.  Netctl can help in this allowing both interfaces to go without manual intervention.  The only difference is you won't be roaming like you can in wicd.

  • [SOLVED] Issue with eth0 (eth0: timed out)

    Hi there people, just installed Arch on my PC (again). The first time I had no problems with this, but now it is really bothering me. Well, my PC only access the net via wireless, so I have no wired connection for it. Here's my /etc/rc.conf:
    # /etc/rc.conf
    eth0="dhcp"
    wlan0="dhcp"
    wlan_wlan0="wlan0 essid MySpot key ABCDEFABCDEF1234567ABCDEFC"
    INTERFACES=(eth0 wlan0)
    Well, everything is working fine, I can get access to the internet on bootup. My only concern is that my system is taking awfully long to boot. It takes about 1-2 minutes on "::Starting Network", then it shows me "eth0: timed out". Then it takes about 10 secs to start my wlan0 interface and the system finishes booting. I had previously installed Arch 2008.12, and the Starting Network only took about 10 secs to start my wlan0. I have already tried commenting out the eth0 line and putting a ! in front of eth0 on INTERFACES, but doing that only shows me an error message for my wlan0 and render my internet unusable on system bootup. So, my questions are:
    1) Do I really need the eth0 interface for my connection (since I'm using wlan0 for wireless connection) ? Why can't I comment it out?
    2) If I really need eth0, how can I make my boot time go faster, or how can I make it not time out?
    Thanks in advance for any help given...
    EDIT: problem solved, see Post 8 below for answers...
    Last edited by gabscic (2009-03-25 03:40:43)

    Thanks for answering. Well, I think eth0 is being detected correctly. Here is the output for ifconfig:
    eth0    Link encap: Ethernet    Hwaddr  00:18:F3:87:97:41
              UP BROADCAST MULTICAST  MTU: 1500 Metric: 1
              RX packets:0  errors:0 dropped:0 overruns:0 frame:0
              TX packets:0  errors:0 dropped:0 overruns:0 carrier:0
              collisions:0  txqueuelen:1000
              RX bytes:0 (0.0 b)    TX bytes:0 (0.0 b)
              Interrupt:19
    lo        Link encap: Local Loopback
              inet addr:127.0.0.1    Mask:255.0.0.0
              UP LOOPBACK RUNNING  MTU: 16436 Metric: 1
              RX packets:0  errors:0 dropped:0 overruns:0 frame:0
              TX packets:0  errors:0 dropped:0 overruns:0 carrier:0
              collisions:0  txqueuelen:1000
              RX bytes:0 (0.0 b)    TX bytes:0 (0.0 b)
    wlan0  Link encap: Ethernet    Hwaddr  00:15:AF:09:BC:E7
              inet addr: 192.168.0.100  Bcast:192.168.0.255  Mask:255.255.255.0
              UP BROADCAST RUNNING MULTICAST  MTU: 1500 Metric: 1
              RX packets:1903  errors:0 dropped:0 overruns:0 frame:0
              TX packets:7  errors:0 dropped:0 overruns:0 carrier:0
              collisions:0  txqueuelen:1000
              RX bytes:615024 (606.6 Kb)    TX bytes:1020 (1020.0 b)
    wmaster0    Link encap: UNSPEC    Hwaddr  00-15-AF-09-BC-E7-00-00-00-00-00-00-00-00-00-00
                      UP BROADCAST RUNNING MULTICAST  MTU: 1500 Metric: 1
                      RX packets:0  errors:0 dropped:0 overruns:0 frame:0
                      TX packets:0  errors:0 dropped:0 overruns:0 carrier:0
                      collisions:0  txqueuelen:1000
                      RX bytes:0 (0.0 b)    TX bytes:0 (0.0 b)
    Well, I hope that can help. Searched the net and the forums, and every problem related to this is with people who are actually trying to use the eth0 interface for connection. In my case, I don't think I need it, I only need the wlan0. What I'm trying to do is get rid of eth0 while letting wlan0 work.

Maybe you are looking for

  • Advanced and complex validation procedures

    Hi, We have a derivation procedure with more than 40000 caracters and impossible to split it. I know that we can create a package and put it in a created account e.g. pack and give an execute access to the rxc_pd account then call this package from O

  • Newbie Question DVD usage

    Hi everyone, This is my first Apple. So this is a whole new world for me. I am having some difficulty using the the DVD player in that it won't play them. The error message comes as being an unsupported DVD yet they are store bought DVD's. Titles tri

  • Help-Dead spots on my Screen

    My iphone is experiencing dead spots on the top portion of my screen. My dilema is that I bought this iphone and move to Canada this year, now i am worried that my phone will not be covered by warranty. Can anyone please give me some suggestion or he

  • Someone have Premiere 5.5 + matrox rtx2?

    We have this system: DELL PRECISION T3500 64 BITS CPU INTEL XEON W3520 2.67GHZ  266 MHZ 4 CORE - 12 GB RAM NVIDIA GEFORCE GTS450 MATROX RTX2 - 5.1.2.8 PREMIERE PRO CS5 (5.02) WINDOWS 7 PRO Hello, We are using the CS5 Premiere with Matrox RTX2 for som

  • Tab bar is gone won't refreash

    I have firefox 3.6 installed on my pc it is my browser I use yahoo .com home page as my home page when I shut down my tabs won't show the bar is there but will not show my tabs