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
1
vote
1 answer

Python - Trying to backup a network switch using Paramiko, not receiving the expected output

I've been trying to create a script that would back up our switches from a CSV file. I'm using Paramiko to SSH into a switch and run "show run", but for some reason the only output I'm receiving is the name of the switch. import pandas import…
titors
  • 11
  • 1
1
vote
1 answer

Error dynamically loading Fragments in Android app

i am trying to make a simple application based on the Android API FragmentLayout. Instead of changing a simple TextView I want to be able to switch between a group of classes I have created which extend the Fragment class. I can statically create…
Jon Rose
  • 1,457
  • 1
  • 15
  • 25
1
vote
1 answer

Phaser My game Freezes after switching scenes

I'm working on a proof of concept that involves the game switching between 2 scenes. The scenes switch when the player character moves in front of a door sprite and presses a button. Update: Here is the code from the first scene, including that lets…
EmptyStone
  • 235
  • 1
  • 7
1
vote
0 answers

How to switch between In-App-Purchase subscriptions?

I have an app in App Store using In-App Purchase with non consumable type. Last week my client wanted to switch the In-App Purchase type from Non-consumable to Non-renewable subscription (user have to manually renew for each month). I have searched…
john raja
  • 509
  • 4
  • 8
1
vote
0 answers

click to move on top of the tabs section

I have multiple 5 tabs with content for each tabs, I created tab in footer for click to move next. Now when I click to next tab text its working to move to next tab but after move tab page is still in footer where we clicked I need when click to…
Designer16
  • 53
  • 1
  • 8
1
vote
1 answer

Why won't this simple view switching project work?

I'm in the process of learning how to write apps in Xcode. I'm using a book to guide me. Unfortunately the book is written with guides to Xcode 3 and I'm using Xcode 4. Now so far there haven't been any problems, but this project doesn't work, and…
Eksperiment626
  • 985
  • 3
  • 16
  • 30
1
vote
1 answer

Switching between gps and network provider

In my app I set both providers with fine and coarse accuracy to listen for location updates. I understand that using fine the location will be provided by the gps, and using coarse the location will be provided by the network provider (from this…
Sandra
  • 4,239
  • 10
  • 47
  • 80
1
vote
1 answer

Can I remove a packet payload inside a .p4 program?

I would like to know if it's possible to completely remove a packet payload from a packet inside a .p4 program or at least modify it to random data. The reason behind this is that I'm cloning a packet and sending it to a different host (monitor) and…
1
vote
2 answers

switching or hide/show links after week completed

I have 4 links here and I want to show only one link(different lunch every week) at a time. Then showing first lunch after 4 weeks completed. Starting from Monday.
1
vote
0 answers

Switch Terminal gets messy when using 'screen' command after the first time

I am entering my switch using these two commands stty -F /dev/ttyS0 9600 cs8 -cstopb -parenb screen /dev/ttyS0 The first time I get into the switch's terminal its fine, but after that, I need to restart the PC to re-enter the switch again since…
1
vote
0 answers

4 Seasons - not producing output in pyCharm, but shows Invalid in other IDE

I am writing a program that takes input from the user for a Month and Day, and then determines which of the four seasons the day belongs to. We were given the specific seasons below, and the user is to input a Month and day. Below is what I came up…
Casey
  • 11
  • 1
1
vote
1 answer

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

Following the question : Automated testing with Robot framework : Switching beetween windows that open on the same browser a second issue arises. How do I make it stay on the new tab if the original and the new tab have the same title. I click the…
1
vote
1 answer

circuit switching vs virtual circuit switching

In virtual circuit switching the packets follow a dedicated path and it is connection oriented, whereas in case of packet switching they may take different paths and it is connection less. If in virtual circuit switching packets follow a dedicated…
Navenkumar
  • 31
  • 1
  • 7
1
vote
1 answer

persisted switching variables in long SQL script?

I am using switching variables in a long SQL script that I want to run in SSMS in a half manual way. I mean, selecting some parts of the script and executing thoses instructions in batches. The switching variables at the start of the script look…
Ludovic Aubert
  • 9,534
  • 4
  • 16
  • 28
1
vote
2 answers

Display a message on Alcatel CLI before login

I would like to know if there is a way to show a message on the CLI when connecting to an Alcatel switch before it asks to enter login and password. I'm doing that because I would like to set a custom ID for each switch and knowing the ID without…
Woulf
  • 15
  • 4