Switch features Flashcards

1
Q

Switches are often described in two planes. Control plane and Data plane. What are these both responsible for?

A

Control - Managed switch hardware and software that enables interfacing and management of a switch
Data - The “Dumb” part of a switch that does the natural job of relaying data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are three methods of interfacing with a switch?

A

1) Web interface
2)Console port
3)Putty via a networked PC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

True or false: You need to use putty / some terminal software even when using a console port to interface with a switch

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is In-band management and Out-of-band management?

A

In-band management: Connecting and managing a switch over the same network it’s servicing - Often seen as a security risk
Out-of-band: Connecting to and managing a switch through means outside of the network the switch is serving. Ex: Having a private network just for monitoring you use to connect to the switch.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a management port?

A

This is a security feature with which a switch will only allow interfacing on a single, manually allocated port.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are three switch commands?

A

show config
show interface
show route

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is flow control?

A

Flow control is a method by which slower computers can send a “pause frame” to switches to tell them to halt their stream of data so the PC can ‘catch its breath.’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are jumbo frames?

A

Allow the exceeding of the MTU size of 1500 bytes of payload per frame. This works well internally, but out on the WAN is little support for this and it will inevitably cause issues for you.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is port security

A

A switch will only work with a specific MAC address provided to it. Security feature.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is sticky MAC

A

Dynamic learning and storage of MAC addresses for port security. It memorizes and stores MAC addresses it knows to be safe and blocks unauthorized ones.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Can two vlans communicate through the same switch they were made on?

A

False. Unless it is a L3 multi-layer switch, the L2 switch will need a router to perform the inter-vlan routing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Switches, when dealing with simple point to point connections, allow broadcast frames to pass through. Is this also true of VLANS?

A

Broadcasts will not pass between VLANS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is switch trunking?

A

Enables communication between the vlans of two separate switches

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is 802.1Q?

A

Switch trunking. This enables trunking between different hardware brands.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a static vlan?

A

A static VLAN is a group of ports designated by the switch as belonging to the same broadcast domain. Your bog standard vlan.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

802.1Q is port trunking. It enables communication between different VLANS. But how does it achieve this?

A

It uses a “tag” added to the frames sent to identify where the frame should be headed.
If the frame is for someone on the same switch, it will simply send it through as usual.
If the frame is the same VLAN but not connected to the original switch directly, it will send it through the trunking port without a tag.
If the frame is for a different VLAN entirely, it will tag it for said VLAN and send it on its way.

17
Q

What is a native vlan?

A

Backwards compatibility with hardware that doesn’t support the tagging system.

18
Q

What is VTP?

A

Vlan trunking protocol is a cisco proprietary protocol that enables management of multiple cisco switches. It automatically updates other switches with new vlan information if set to do so. Saving you from having to manually alter every switch with new info.

19
Q

What is inter-vlan routing?

A

VLANs cannot exchange information.
Like real networks, it must be routed.

20
Q

What is sub-interfacing

A

Using one physical port and logically dividing it into multiple logical connections

Routers can use just one port to support multiple vlan connectors. This is done through sub-interfacing, the act of logically splitting a single port, usually used for just one connection into multiple “channels” so that it may carry multiple sets of data at once for different vlans.

21
Q

What is the purpose of a DHCP relay

A

To allow DHCP DORA (Discover, Offer, Response, Accept(?) packets through a router that would otherwise block them.

22
Q

What is a private VLAN port

A

A VLAN port that cannot communicate with any other port on the switch. A segregated network.

23
Q

True or false: Private vlan ports can only interact with the trunk uplink port

A

True

24
Q

The majority of the time, if you set up a new VLAN and someone can’t access resources, what is the likely issue?

A

Wrongly assigned VLAN ports.

25
Q

What is a switch port and router port?

A

Switch port forwards based on mac, router port forwards based on IP.

26
Q

What is load balancing?

A

The act of evenly spreading out incoming requests across servers as to ensure one server doesn’t take all the burden and become overloaded.

27
Q

How does DNS load balancing work?

A

You make A records for your servers and assign them all the same FQDN.
You then tell your server to “round robin” or “cycle” through them.

This makes the DNS server cycle through the servers it sends requests to as compared to sending all data to just one.

28
Q

What is BIND DNS?

A

Assigns servers requests based on their workload. An alternative to round robin load balancing.

29
Q

What is a content switch?

A

A specialised layer 7 switch that reduces workload on servers by doing some of the work themselves (In the case of a HTTP content switch, they would send cookies and deal with TLS related things) and also performing load balancing as they do so.

30
Q

What is bandwidth/traffic shaping

A

Controlling the flow of packets within/without the network. You can also assign minimum bandwidth to a specified machine.

31
Q

What is port bonding, link aggregation, NIC bonding, port aggregation, etc?

A

Logically dedicating two ports on a switch to the same connection. This increases bandwidth.

32
Q

What’s the difference between IPS and IDS?

A

IPS acts like a firewall and guards from external threads. IDS is usually inside the network and detects issues from within that a firewall may have missed. IDS also deals with things such as virus USB sticks being plugged into the network.

33
Q

Does an IDS sit within or without the flow of network traffic

A

Without.
IDS takes a copy of everything that is sent over the network (via port mirroring*) and scans it for threats.
The IDS cannot take action itself, but can employ other security programs to tackle a bad situation

*Port mirroring refers to when data comes in on one port, and is then replicated out on another for the sake of maintenance and data collection.