Questions tagged [switching]

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs)

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs). Mid-to-large sized LANs contain a number of linked managed switches. Small office/home office (SOHO) applications typically use a single switch, or an all-purpose converged device such as a residential gateway to access small office/home broadband services such as DSL or cable Internet. In most of these cases, the end-user device contains a router and components that interface to the particular physical broadband technology. User devices may also include a telephone interface for VoIP. An Ethernet switch operates at the data link layer of the OSI model to create a separate collision domain for each switch port. With 4 computers (e.g., A, B, C, and D) on 4 switch ports, any pair (e.g. A and B) can transfer data back and forth while the other pair (e.g. C and D) also do so simultaneously, and the two conversations will not interfere with one another. In full duplex mode, these pairs can also overlap (e.g. A transmits to B, simultaneously B to C, and so on). In the case of a repeater hub, they would all share the bandwidth and run in half duplex, resulting in collisions, which would then necessitate retransmissions.

http://en.wikipedia.org/wiki/Network_switch

329 questions
0
votes
1 answer

Facebook likes with multiple third-level domains or switching domains

Is it possible to configure a Facebook app to have FB likes on a website "aggregated" on different third-level domains? So, for instance, all the likes on http://example.com/page-to-like are the same of http://www.example.com/page-to-like and…
zetarun
  • 777
  • 1
  • 8
  • 13
0
votes
1 answer

Android Activity switching without refresh

I am trying to get this(switching between multiple activities) from many days...atlast i tried to do it using intent flags Intent intent = new Intent(getApplicationContext(),Act1.class); if(a1) // a1 is set true during oncreate of…
Anand Kumar
  • 66
  • 2
  • 8
0
votes
1 answer

Xcode: Switching between views

I want to be able to switch between views. I have been writing some code, but it is not working? - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; { AlleRumViewController *allerum =…
Mikkel V.
  • 155
  • 1
  • 3
  • 11
-1
votes
1 answer

Do UDP/TCP packets get sent to router/firewall if its on same network segment of same switch?

A hypothetical network... ISP's Internet router/modem is connected to a 1Gb/s inbound port of a firewall device running Pfsense. The firewall device has additional two 1Gb/s ethernet ports that each dole out separate IP ranges. (e.g. 192.168.100.x,…
Anon Ymous
  • 139
  • 1
  • 2
  • 10
-1
votes
1 answer

Language Switching and replacing CSS

I am using a language switcher to change language, with this code I am able to change language via jQuery Code in index.php < link class="css_en" rel="stylesheet" href="css/index-en.css" > Code in LanguageSwitch.js …
-1
votes
1 answer

Why am I to listen to all traffic in my network?

I have the following network layout: Cable Modem (in modem mode) => Asus RT-AC68U => Aruba Instant On 1930 24G switch => NETGEAR 16 Port switch (GS316P). I wanted to do some network traffic capture so I installed Wireshark on my MacBook Pro. I was…
GreenLantern22
  • 489
  • 5
  • 10
-1
votes
1 answer

Listen to UDP messages which are not sent as a broadcast

Consider the following: I have a device which sends UDP messages to another device, both on the same switch. The UDP messages are not sent as a broadcast. Now I want to listen to these UDP messages with a third device, also connected to the same…
simon
  • 1
-1
votes
1 answer

Port with VLAN not working on Cisco switch

I'm having issues with a cisco SG550X-24 switch. The switch is showing 100U as an administrative VLAN but not an operation VLAN. I'm unsure why this is, and plugging into this port doesn't work. The switch functions normally and other ports work…
AlexG42
  • 3
  • 4
-1
votes
1 answer

Linux - configure TI AM335X MDIO when connected to Marvell's switch

I have a board with Sitara AM3352 - the networking is not via Ethernet PHY, but with a switch (Marvell 88E6341) that is connected to the CPU with MII. the switch has a port that is connected to a PHY and RJ45 connector. My Linux version is 4.14 I…
Avner Flesch
  • 35
  • 1
  • 7
-1
votes
1 answer

Can't route VLAN with UCOPIA

I'm writing to you because I can't solve a problem with a client. My client has an infrastructure with the following characteristics: 2 ISP routers 1 fortigate firewall 1 dedicated router that broadcasts a UCOPIA US250 guest portal 65 Zyxel…
Raphaelle
  • 1
  • 1
-1
votes
1 answer

Can I have 3 GBit/s between computers through a cheap router?

I made tests with iperf, iperf3, ssh + pv + /dev/zero, copying files, and netcat (nc). Most of the tests are showing 940 Mbit/s, like expected, including netcat. But when I saw that actually for some of these tools, the cpu was a bottleneck, I moved…
NicuMarasoiu
  • 776
  • 9
  • 25
-1
votes
1 answer

keeping a button active while switching between pages

I am making a multi pager for a school project, it has all been going pretty well till now, but there is one thing i can't figure out, i have a small java script that changes between 2 CSS files when clicked on a switch button, the one CSS`` page is…
-1
votes
5 answers

Saving data on a web page when switching from one page to another in ASP.NET?

I'm new to ASP.NET. I'm designing a user interface in Asp.NET and C# where the user can login and then launch an application. When using this application the user has to fill out a form that is 10 pages long. So, I have used navigation menu and…
user613037
  • 75
  • 3
  • 10
-1
votes
1 answer

what is the scope of layer 2 traceroute, same subnet or outside also possible

Considering, i may have switches from different vendors in my network? Also, how to ensure the target MAC will always exist in the MAC table of the switch
-1
votes
1 answer

How does a Frame reach the Network Switch?

While studying about packet traversal in Networks, I understood that in a LAN we use MAC address for traversal of the frame. I also Understand how the frame reaches from PCa to PCb in a network through the switch and how Switch learns the MAC…