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

Switches and routers interfaces name dictionary

I am curently looking for a dictionary that contains all (or a lot) of interfaces names for routers and switches. For instance a dictionary that would look like this : [[Cisco : GigabithEthernet1/0/0, ..., GigabithEthernet1/0/28, FastEthernet1/0/0,…
0
votes
1 answer

Regex capture group with non-uniform space group

I'm trying to parse the output of the "display interface brief" Comware switch command to convert it to a CSV file using RegEx. This command is printed using the following format: Interface Link Speed Duplex Type PVID Description…
eduardomozart
  • 1,444
  • 15
  • 14
0
votes
1 answer

Switch ThumbColor with React-Native

I would like to make a switch on my app with react-native. The switch should look like this switch as demonstrated below: I've tried with Linear Gradient with unsuccessful
Manko
  • 51
  • 1
  • 8
0
votes
1 answer

Does specifying criteria switch the location provider in Android?

I want that the application should switch between GPS_PROVIDER and NETWORK_PROVIDER automatically. At present, I specify the providers in the program, so, if I specify criteria and set the locationlistener with that, then will it switch…
sunil
  • 9,541
  • 18
  • 66
  • 88
0
votes
1 answer

2 layer switch how to handle the datagram bigger than MTU?

If the datagram bigger than MTU, 2 layer switch will drop it? Dose 2 layer switch can report a ICMP? If not report ICMP, how can I determine the data size to pass the switch successfully?
wangzhen
  • 11
  • 3
0
votes
0 answers

When do we use switches in cut-through mode?

I'm a computer network undergraduate and now I'm working on a project at university. Can someone help me on this?
manula
  • 23
  • 1
  • 4
0
votes
1 answer

How to use regex, switch and trim on python to retrieve a value in a file?

I have a file with this format: Description 10.01.1 ; ; Find the information here ; University National Cantoon University Status National Administrator visible Disable *Enable Start Edu Fair Event Event Only *Event and…
Cheries
  • 834
  • 1
  • 13
  • 32
0
votes
3 answers

Crash in the simulator when i try to go to an other view

so I have a tab bar application where i have put a button to go to an other view. so in the FirstView.h i have that IBOutlet ContactMainViewController *contactMainViewController; and that -(IBAction)gotoContactMainViewController; in my FirstView.m…
AlexF
  • 15
  • 1
  • 7
0
votes
1 answer

Switching between views

I am a beginner in android, what I have to do is I have an audio playing with images. Also in the bottom bar, I have a button to map. Now I need to change my view to the map when clicked on map button. But the audio should not be stopped, it should…
thejaswi
  • 175
  • 4
  • 13
0
votes
1 answer

How to get information when the switch is flipped React-Native

I want to get the information whether the switch was switched or not. And import this information in other files. And then I want to make an IF query for StyleSheet. const DarkLightSwitch = () => { const [lock, setLock] = useState(); return ( …
0
votes
1 answer

Facing a problem when switching between portrait/landscape orientation

When I try to switch to landscape orientation of the screen I get an error. The XML layout for landscape orientation work just fine, because I tested it by forcing the application to appear in landscape orientation in…
nenito
  • 1,214
  • 6
  • 19
  • 33
0
votes
0 answers

How to change android user accounts using Appium?

How can we switch between different user accounts added on a android device using Appium? I need to automate tests for an application for different users on same device. Is it possible?
0
votes
0 answers

Reaching between OVS bridges

want to ping different Open vSwitch bridges via a physical interface. My host has an eth1 and a wlan0 interface. I have created 3 OVS bridges and assigned IP addresses to them. wlan0 added to br0. Two virtual interface wlan0.1 and wlan0.2 is created…
0
votes
1 answer

Automated testing with Robot framework : Switching beetween windows that open on the same browser

can someone help me to switch between windows that do not open as pop-up windows, but on the same browser ? Switch Window locator=NEW gives me an error that it has the same index Select Window gives me an error that there is no keyword Thanks!
0
votes
2 answers

How to switch windows in selenium? I want to enter gmail credentials on the new popup which appears, popup doesn't have a close button

def switch_to_new_window(self): sleep(5) print("Parent window title: " + self.webdriver.title) parentWindow = self.webdriver.current_window_handle childWindows = self.webdriver.window_handles for window in childWindows: …