70-410 Networking Flashcards

1
Q

Link Local Address

A

These are used on a single link. All IPv6 interfaces on a device such as host or router is assigned a link-local address. The Link-local address is always a unicast address and /10 prefix is used for these addresses. The first filed will always be FE8x(1111 1110 10). These do not follow any hierarchy.FE80::1234:33FF:FE11:2222/10

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

Site Local Address

A

These are similar to the Private IP addresses used in IPv4. These addresses cannot be used on the Internet but can be used in organizations as Private IPs.The Site Local address has its first field as FECx (1111 1110 11). These are also unicast and follow to the hierarchy.FEC0::2642:E3FE:FF63:C172/64- FEC is the first 10 bits which are fixed also known as FP. Format Prefix.- The next 38 bits are set as 0- The following 16 bits are used for identification of Private subnet ID- The last 64 bits is the interface id based on the hardware address.

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

Aggregate Global Addresses

A

These are similar to the Public addresses in IPv4 and can be used over the Internet. So devices that need to communicate over the Internet need to have this address assigned and should be unique.The first field is always 2xxx (001). These addresses are unicast.2000::2532:E3EF:FE76:C234/64- The first 3 bits are the fixed Format Prefix FP.- The next 13 bits are the top-level aggregation identifier (TLA ID).- The following 8 bits are reserved for future use.- The next 24 bits are the next-level aggregation identifier (NLA ID).- The next 16 bits are the site-level aggregation identifier (SLA ID).- The last 64 bits similar to link and site local are used as the interface ID

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

Multicast Addresses

A

These addresses are equivalent of the multicast addresses used in IPv4. Packets are sent to more than one device. Multiple multicast groups can be can be set and interface are assigned to them.The multicast address always begins with FFxx (1111 1111)FF01:0:0:0:0:0:0:1IPv6 and IPv4 configured devices can still communicate with each other using transition mechanisms like:Dual IP Stack: In this both the version of protocols run on the same device / network infrastructure and no encapsulation is required. Tunneling: As many users do not have IPv6 support and cannot make use of IPv6 addresses, thus IPv4 infrastructure should be used to carry IPv6 packets. In tunneling the IPv6 packet is encapsulated in an IPv4 packet

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

DHCP Option Parameters

A

3 Router6 DNS server15 DNS domain name44 WINS server (NetBIOS name server)45 NetBIOS datagram distribution server (NBDD)46 WINS/NetBIOS node type47 NetBIOS scope IDDe

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

Copy-NetFirewallRule

A

Copy-NetFirewallRuleCopies an entire firewall rule, and associated filters, to the same or to a different policy store.

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

New-NetFirewallRule

A

New-NetFirewallRuleCreates a new inbound or outbound firewall rule and adds the rule to the target computer.

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

New-NetFirewallRule -Name Allow_Ping -DisplayName “Allow Ping”`

A

New-NetFirewallRule -Name Allow_Ping -DisplayName “Allow Ping” -Description "Packet Internet Groper ICMPv4" -Protocol ICMPv4 -IcmpType 8 -Enabled True -Profile Any -Action Allow ` -CimSession $cim

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

netsh advfirewall firewall add rule

A

netsh advfirewall firewall add rule name=”Allow Inbound Telnet” dir=in program= %SystemRoot%\S

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

PowerS New-NetFirewallRule

A

New-NetFirewallRule -DisplayName “Allow Inbound Telnet” -Direction Inbound -Program %SystemRoot%\System32\tlntsvr.exe -RemoteAddress LocalSubnet -Action Allow

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

Copy firewall ruele

A

$Rule = Get-NetIPsecRule –DisplayName “Require Inbound Authentication”$Rule | Copy-NetIPsecRule –NewPolicyStore domain.costoso.com\new_gpo_name$Rule | Copy-NetPhase1AuthSet –NewPolicyStore domain.costoso.com\new_gpo_name

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

New-NetIPAddress

A

Creates and configures an IP address.

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

Remove-NetIPAddress

A

Remove-NetIPAddress

Removes an IP address and its configuration.

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