Sponsored Content
Full Discussion: Network issue in same vlan
Operating Systems Linux Red Hat Network issue in same vlan Post 302965917 by jacki on Thursday 4th of February 2016 05:42:19 PM
Old 02-04-2016
Network issue in same vlan

We have two hosts in same vlan with same route rules.

One of them is not able to connect to an outside IP while in another I get "failed: Connection timed out" while testing the connectivity through netcat.

I have tried mtr /traceroute and it gives me the same results.

Is there a netcat command which telnets to a port and gives a verbose output with intermediate hops?

Or you can point me to an issue or triaging commands?

thanks.

---------- Post updated at 05:42 PM ---------- Previous update was at 01:00 PM ----------

Typo underlined.

We have two hosts in same vlan with same route rules.

One of them is able to connect to an outside IP while in another I get "failed: Connection timed out" while testing the connectivity through netcat.

I have tried mtr /traceroute and it gives me the same results.

Is there a netcat command which telnets to a port and gives a verbose output with intermediate hops?

Or you can point me to an issue or triaging commands?

thanks.
 

10 More Discussions You Might Find Interesting

1. Ubuntu

Network issue

I have a Ubuntu linux (Ubuntu 6.06) at home. I have a ADSL modem (eth0) connected to it for my Broadband connection. It all works fine when the system gets started. But, when I receive a call, the link goes off. And then I lose my internet connection. I tried ifup/ifdown to bring the connection... (2 Replies)
Discussion started by: ranj@chn
2 Replies

2. Solaris

Network interface issue

Hi All, I want to configure network into my system. i tried following in to configure the interface to find the name of interface #prtdiag |grep net i got following 0 PCI-1 33 1 network-SUNW, hme then i tried following #prtconf -v |grep net network, instance #0 (6 Replies)
Discussion started by: kumarmani
6 Replies

3. IP Networking

network segment use vlan, linux vconfig and AT-GS950

Dear all, I have a Allied Telesyn AT-GS950 16 port switch. All hosts&router have rtl8139 NICs. OS : Slackware linux 12.1. I use a switch with vlan technique to separate my network to some segment. here my plan: router eth0 ---> switch port 1 switch port 5 <--- eth0 host A switch... (1 Reply)
Discussion started by: penyu
1 Replies

4. HP-UX

Intermittent Network Issue

I have some issues to look at to do with reported network problems. We have had reports of intermittent connection issue between 2 servers when trying to access an Oracle Dbase. And I have been asked to check the hardware to see if it's a server issue or not. I have done some basic checks using... (3 Replies)
Discussion started by: Andyp2704
3 Replies

5. Solaris

Zone network issue

Hi guys, I got a global zone with with two zones runnig. After a patch upgrade (July 2010) one of them stop to working fine: basically I can't ping it ( I mean I can ping from the other zone, but actually the ping pass across the global zone..) and I can't access it in ssh or telnet...(actually... (0 Replies)
Discussion started by: cecco16
0 Replies

6. Red Hat

VM network issue

Hi, I'm trying to create a lab environment in my personal laptop. I have created a virtualbox RHEL6.1 and I want to make another copy out of it to make it 4 instances by simply copying the whole folder and changing their name and then changing their IP addresses. is this OK? please advice. for... (2 Replies)
Discussion started by: messi777
2 Replies

7. SuSE

Network issue in SLES11.2

I had installed suse linux 11.2 . I had some strange problem with my network , after configuring it showing some error like tulip_stop_rxtx() failed . The server is not reachable from outside. Could some one help me with it. (1 Reply)
Discussion started by: nanduri
1 Replies

8. Solaris

Network Printing issue

I have network printer registerd in solaris environment. When I issue print, it prints banner page. The issue printer is registerd in Print server which is running on Linux environment. So when I issue print in Print server, it doesn't print banner page as banner settings are made to turn off It... (6 Replies)
Discussion started by: Sunil Koya
6 Replies

9. Red Hat

Network Bonding Issue

I have one production system where my customized application runs.The applications require seamless network connectivity with different machines connected in LAN and WAN. As these applications are very critical, it is very much required to have a seamless network activity.The applications are... (4 Replies)
Discussion started by: Anjan Ganguly
4 Replies

10. Solaris

Solaris non-global zone network vlan

Have 2 nics on physical system net0 phys 1500 up -- net1 phys 1500 up -- 1. I want to create a link aggregation with LACP enabled with above 2 nics 2. Create port-group(Like we create on ESXi) with VLAN-ID 2141 3. And assign this... (0 Replies)
Discussion started by: Shirishlnx
0 Replies
NG_VLAN(4)						   BSD Kernel Interfaces Manual 						NG_VLAN(4)

NAME
ng_vlan -- IEEE 802.1Q VLAN tagging netgraph node type SYNOPSIS
#include <sys/types.h> #include <netgraph.h> #include <netgraph/ng_vlan.h> DESCRIPTION
The vlan node type multiplexes frames tagged according to the IEEE 802.1Q standard between different hooks. Each node has two special hooks, downstream and nomatch, and an arbitrary number of ``vlan'' hooks, each associated with a particular VLAN tag. An ETHERTYPE_VLAN frame received on the downstream hook with a tag that the node has been configured to filter is sent out the corresponding ``vlan'' hook. If it does not match any of the configured tags, or is not of a type ETHERTYPE_VLAN, it is sent out the nomatch hook. If the nomatch hook is not connected, the packet is dropped. An Ethernet frame received on the nomatch hook is passed unmodified to the downstream hook. An Ethernet frame received on any of the ``vlan'' hooks is tagged accordingly and sent out the downstream hook. HOOKS
This node type supports the following hooks: downstream Typically this hook would be connected to a ng_ether(4) node, using the lower hook. nomatch Typically this hook would also be connected to an ng_ether(4) type node using the upper hook. <any valid name> Any other hook name will be accepted and should later be associated with a particular tag. Typically this hook would be attached to an ng_eiface(4) type node using the ether hook. CONTROL MESSAGES
This node type supports the generic control messages, plus the following: NGM_VLAN_ADD_FILTER (addfilter) Associates a hook with the tag. NGM_VLAN_DEL_FILTER (delfilter) Disassociates a hook from the tag. NGM_VLAN_GET_TABLE (gettable) Returns a table of all hook/tag associations. EXAMPLES
#!/bin/sh ETHER_IF=rl0 ngctl -f- <<EOF shutdown ${ETHER_IF}: mkpeer ${ETHER_IF}: vlan lower downstream name ${ETHER_IF}:lower vlan connect ${ETHER_IF}: vlan: upper nomatch EOF ngctl mkpeer vlan: eiface vlan123 ether ngctl msg vlan: addfilter '{ vlan=123 hook="vlan123" }' SHUTDOWN
This node shuts down upon receipt of a NGM_SHUTDOWN control message, or when all hooks have been disconnected. SEE ALSO
netgraph(4), ng_eiface(4), ng_ether(4), ngctl(8), nghook(8) HISTORY
The ng_vlan node type appeared in FreeBSD 4.10. AUTHORS
Ruslan Ermilov <ru@FreeBSD.org> BSD
March 1, 2004 BSD
All times are GMT -4. The time now is 09:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy