Sonntag, 7. Dezember 2014

Übung 7 - 24.11.2014



In der heutigen Einheit geht es um das statische Routing. Es soll das Beispiel "Lab 2.8.1: Basic Static Route Configuration" vom Cisco Exploration Semester 2 mit dem Cisco Packet Tracer ausgearbeitet werden.





  • Wie wird zum Schluss ein Paket von PC1 zu PC3 genau übertragen?
Das Paket geht vom PC1 zum dazugehörigen Switch und dem ersten Router. Dieser leitet das Paket zum zweiten Router weiter, welcher es zum dritten Router leitet. Dort geht es zum Switch und zu PC3.


Routerkonfiguration:
Zuallererst muss man im Router das Interface mit "ip address xxx.xxx.xxx.xxx subnetmask" konfigurieren.
Nachdem alle Interfaces (sowohl Fast Ethernet und Serial) konfiguriert sind, muss man noch das Weiterrouten konfigurieren.

Um dies zu ermöglichen, muss man im Configuration-Bereich Folgendes eingeben:

"ip route 'Zielnetz mit SN-Mask und Port der am Netz anliegt' ". Wenn es bei einem Router nur ein anliegendes Netz gibt, gibt man statt dem Zielnetz mit der Zielsubnetmask einfach 0.0.0.0 an.

Damit werden alle Pakete, die der Router nicht kennt an diesen Port geschickt.
Dieses System funktioniert auch, wenn man zwei anliegende Netzwerke hat, jedoch nur wenn eins der anliegenden Netze ein "Grenznetz" ist.

Verweis: Grenznetz ist ein Netz, das als anliegende Netze nur eines hat, welches das geroutete ist.

Theoriestunde 7 - 13.11.2014


In general a packet follows the 5 layer-structure.


L1: Physical Layer (Ethernet or coaxial cable)
L2: Datalink Layer (Ethernet or WIFI)
L3: Network Layer (IP)
L4: Transport Layer (TCP, UDP)
L5: Application Layer (e.g. HTTP)





UDP advantages:

smaller packet sizes
UDP header: 8 bytes
TCP header: 20 bytes

Connectionless (you don't have to create a connection for sending something)
More control, when data is sent
TCP:

Connection needed
It's used, where no data loss can be tolerated!



Questions & Answers:
  • What is the purpose of the transport layer?
It allows multiple applications to use the same internet-connection simultaneously.
One application can use multiple ports at the same time, if it wants.
For instance, an application reserves port4917 for sending an message to another machine. This message is passed on to the transport layer. The message is packed in a segment, which has the source (port4917) and the destination( port80) in it.
Then this is passed on to the network layer.
On the receiver site, the segment with the message passes from the network layer to the transport layer. There the segment will be unpacked, so the message can move to the destination port (port80).

  • How is the PDU (protocol data unit) called in the transport layer?
It's the TCP (Transmission Controll Protocol)

  • What has to be done before the PDU from the transport layer is passed to the network layer?
It has to be encapsulated.

  • Why can packets containing UDP be much smaller than that containing TCP? 
 
  • What is the main charactersitic of a connection-oriented transmission?
The 3-way-handshake (TCP).

  • What happens at UDP and TCP when a segment gets corrupted?
TCP handles the retransmission.
At UDP lost packets are not retransmitted

  • What happens in UDP when an older segments arrives after a newer one?
There is no guarantee for ordering packets. They can come in another queue.

  • Explain the term "congestion control". What does it mean when a network is "congested"?
The congestion control delays the transmission, when the network is congested.
Congested: when the network is overloaded

  • What are the key characteristics of TCP?
There is a connection needed!
It offers retransmission, UDP not!
It's used for file transfers, remote access,...


  • Is the checksum mandatory in UDP?
The checksum in UDP is 16 bytes, but it's not reliable.
In UDP, the checksum is just mandatory in IPv6.

  • Which disadvantages does TCP show over UDP?
Bigger Header
Data doesn't always get send out immediately (cause: congestion control)
Bigger overhead (Retransmission of packets, acknowledgement of packets
Which transport layer protocol is used in realtime communication applications (Skype, VoIP)?
UDP, also for video streaming, where an amount of package-loss can be ok.

  • What's the difference between a stream oriented and a message oriented protocol?
A message-oriented protocol is UDP:
The application sends data in distinct chunks
E-Mail

A stream-oriented protocol is TCP:
Used as a continuous flow of data
Split up in chunks by TCP
Phone conversation

  • When is it better to use TCP rather than UDP?
When you need a transmission, where no loss can be tolerated!

TCP 3-way-handshake
The transmitter asks the recipient, if he wants to setup a connection.
Then the recipient replies to this request of the transmitter.
When the transmitter receives the request-package, it sends an acknowledge to the recipient.

  • What is the TCP window size?
It's the maximal amount of data, which you can send or receive, without confirming data.

  • How many bits are used for sending the sequence number? Why does the sequence number start with a random number?
32 bit.
  • By which number is the sequence number incremented when the sender is acknowledging the SYN(Synchronized Sequence Number) packet from the receiver?
SYN: This bit indicates, that the segment is being used to initialize a connection.

Übung 6 - 10.11.2014

Dieses Mal wiederholten wir das ARP-Protocol
ARP: Address Resolution Protocol

Wann kommt das ARP-Protocol zum Einsatz?

Anhand eines Beispiels zelebriert:
Daten von PC1 zu PC2 schicken.

IP-Adresse:
PC1(Sender, wir): 10.15.3.10 /16
PC2(Empfänger, wir wollen die MAC-Adresse des PC's wissen): 10.15.3.20 /16

Nun sendet der Sender(PC1) eine ARP-Broadcast-Nachricht mit dem Inhalt "Who has +"IP-Adresse-Empfänger" ?"
In unserem Fall: "Who has 10.15.3.20?"
Diese Broadcast-Nachricht bekommen alle im zugehörigen Netzsegment.




Der angesprochene Rechner, also jener mit der IP-Adresse 10.15.3.20 schickt nun eine Antwort (Reply-Packet) mit der MAC-Adresse zurück an denjenigen Rechner, von dem die Broadcast-Nachricht kam. (Diese Antwort sieht nun nur der Sender, nicht wie vorhin beim Rundruf, den jeder sehen kann).

Für die Zukunft legt der Rechner, welcher die MAC-Adresse benötigte (PC1) eine sogenannte "ARP-Tabelle" an, falls weitere Pakete übertragen werden.
Diese Tabelle besteht aus der Destination-IP-Adresse, mit der zugehörigen MAC-Adresse.

Beispiel einer ARP-Tabelle:


Diese Einträge in der ARP-Tabelle währen jedoch nicht ewig. Meist wird durch einen counter heruntergezählt, wielange ein Eintrag bleibt. Im Normalfall bleiben solche Einträge ein paar Minuten, danach muss wieder die gleiche  "Prozedur", wie oben beschrieben, begonnen werden.

Sender schickt ARP-Broadcast "Who has ....?"
Empfänger schickt Antwort mit seiner MAC-Adresse

Das Löschen der Einträge in der ARP-Tabelle hat den Sinn, falls sich die MAC-Adresse ändert, dass diese neue Daten (bzw. neue MAC-Adresse) "automatisch" nach einer gewissen Zeit in der ARP-Tabelle erscheinen/erscheint.
z.B.: Beim Austauschen einer Netzwerkkarte



In IPv6 wird Address Resolution Protocol(ARP), Neighbor Solicitation(NS) genannt!
Der Unterschied:
Bei IPv6 gibt es keine Broadcast-Adresse!


Vorgehensweise beim Aufrufen einer Internet-Adresse:

Beim Aufrufen einer Website wird DNS verwendet!
DNS = Domain Name System

Bsp: Website "www.orf.at"

1) ARP zu 10.15.1.1 (Router)
2) DNS ("www.orf.at" wird hier in eine IP-Adresse umgewandelt)
3) TCP-Verbindungsaufbau (kommt immer bei einem Webzugriff zum Einsatz)
     Hier kommt der 3-Wege-Handshake zum Einsatz
     1.Weg: Client ----> Server
     2.Weg: Server ----> Client
     3.Weg: Client schickt Acknowledge (=Antwort, ob alles richtig ist)
4) HTTP - GET (erhalten der Daten, laden der Seite)


Hier wurde das HTTP-Protocol beim Aufrufen der Website "www.orf.at" mit Wireshark genauer unter die Lupe genommen.

Theoriestunde 6 - 6.11.2014


HTTP (Hyper Text Transfer Protocol)
HTTP is the foundation of data communication for the World Wide Web. It's for exchanging or transfering hypertext.
The protocol is divided into different verbs (methods).



  • Now we are going to have a deeper view in two of them:


GET:
In principle the question "Are you requesting?"
It requests/asks for data and doesn't modify the data on the server.
Examples:
When you type something in your URL or clicking on a link (nearly everytime GET)

POST:
In principle the question "Are you adding something?"
It modifies the server/ changes the state of a server.
It's a POST-verb, everytime, when the server has more infos than before.
Examples:
SignUp, SignIn, posting a status (Facebook, Twitter, ..)

Reference:

Are google searches POST-verbs? NO, google searches are GET-verbs.


  • Common Questions:
- Which request methods are used at HTTP? Which method do you use for which purpose?

HEAD
Asks for the response identical to the one that would correspond to a GET request, but without the response body. This is useful for retrieving meta-information written in response headers, without having to transport the entire content.

POST
Requests that the server accept the entity enclosed in the request as a new subordinate of the web resource identified by the URI. The data POSTed might be, for example, an annotation for existing resources; a message for a bulletin board, newsgroup, mailing list, or comment thread; a block of data that is the result of submitting a web form to a data-handling process; or an item to add to a database.


PUT
Requests that the enclosed entity be stored under the supplied URI. If the URI refers to an already existing resource, it is modified; if the URI does not point to an existing resource, then the server can create the resource with that URI.


DELETE

Deletes the specified resource.


TRACE

Echoes back the received request so that a client can see what (if any) changes or additions have been made by intermediate servers.


OPTIONS
Returns the HTTP methods that the server supports for the specified URL. This can be used to check the functionality of a web server by requesting '*' instead of a specific resource.


CONNECT
Converts the request connection to a transparent TCP/IP tunnel, usually to facilitate SSL-encrypted communication (HTTPS) through an unencrypted HTTP proxy. See HTTP CONNECT Tunneling.


PATCH

Applies partial modifications to a resource.
HTTP servers are required to implement at least the GET and HEAD methods and, whenever possible, also the OPTIONS method.[citation needed]

- Do GET requests modify data on the server?

No.

- When is a GET request transmitted to a server?

When you request data form a server.

- What is the difference between GET and POST requests?

At GET-Requests, you doesn't modify the server. At POST-Requests you modify, you add something to the server.

- When you log in to a server, which method is usually used?

Usually the POST-method is used.

Übung 5 - 3.11.2014



Today we will find out more about IPv6 Neighbor Discovery, using PacketTracer and/or Wireshark.

For the introduce we will start using Wireshark.

At next ask your neighbor to get the IPv6 address of his/her PC (ipconfig /all).

In my case:

2a00:eb0:100:6033:80e:896d:caa8:cb1f


Now start a ping-command in the cmd, with the IPv6-address of the PC next to you:





Now start the capturing in Wireshark:


There you can see, that there is a protocol, named "Neighbor Solicitation" with the IPv6-address of your neighbor.

There you can also find a "Router Advertisement": the router sends periodically a message, that the others can see, where the router is.

Additionally you can analyse it, by clicking the options below.

Theoriestunde 5 - 30.10.2014



Today we have a focus on the "Neighor Discovery" in IPv6.

Here you can view another Youtube-Video:

https://www.youtube.com/watch?v=6rXn7dcj4xA

The Neighbor Discovery Protocol (NDP) is an alternative of the the ARP (Address Resolution Protocol).
It's a Protocol in IPv6. It's responsible for the exchange of link-local messages.
It's also being used to determine IPv6-addresses into Link-Layer-Addresses (MAC).



A protocol, which is used for this is "ICMP" (Internet Control Message Protocol).
The process uses multicast addresses to determine the link-layer-address of a neighbor on the same network(local link), verify the reachability of a neighbor and track neighboring devices.


  • Assignments of NDP:

Router- and Prefix Discovery
Parameter Discovery (MTU, hop limit, ..)
Stateless Address Configuration (SLAAC)
Address Resolution (with Neighbor Discovery)
Neighbor Unreachability Detection
Duplicate Address Detection
Redirect



  • Common Questions:
What's the "host autoconfiguration"?
A IPv6-Host can create automatically a link-local & a global address.




What is a "tentative address" and what is it used for?

A IPv6-address can have many different states. One of them is the state "tentative" (dt.: vorläufig).
In this state, the address isn't definitely assigned to the interface.
The interface is in a state, where the IP-address is going to be tested.
A point cannot communicate over a tentative address in the network.




Which kind of IPv6-address is "FF02::1"?
The link-local address


Which steps are necessary before two hosts can exchange messages?

Übung 4 - 27.10.2014



Konfigurieren der IPv6-Adressen:

-static
-DHCPv6
-Autoconfig (99% bei Clients außer Server)

Autoconfig:
Netzwerkteil muss stimmen!
Routeradvertisment wird ausgeschickt mit dem Netzwerkteil, via Multicast mit der Gruppe all notes (alle Knoten).
Hostteil: 1. EUI 64 (1en 24 Bit der MAC adresse:FFFE:24 weiter Bit MAC (meistens Linux)
2. Random mit Zufallszahl

Überprüfung via Multicast mit hat jemand diese IPAdresse und wenn keine Antwort zurückkommt funktioniert die Adresse.

Neigbour Discovery in Wireshark:


In Zeile 4 bekommt er den Router Advertisment also den Netzteil (alle 30 sek)
In Zeile 24,25 wird die angepingte Macadresse ausgetauscht.
Darunter erfolgt der Pingbefehl

Theoriestunde 4 - 23.10.2014


  • What's the purpose of the preamble?
It's out of 8 Zeros and indicates the start of a frame. So the receiving station knows, where the very first Bit of the Frame is.
After this, there comes the Frame Delimiter (SFD)


  • How many Bits are used for the MAC-address?
Each MAC-address (Destination- Source-MAC-address) needs 6Bytes (48Bits).



  • Where is the IPv4/IPv6 address hidden?
Inside the Destination & Source Address.


  • How does the receiver distinguish between Ethernet and 802.3 frames? (Difference between type/length field) ?
At the IEEE (Institute of Electrical and Electronics Engineers) 802.3, instead of a "Type"-Field, there is a "Length"-Field.

  • Which algorithm is used for calculating the frame check sequence?
There is inside a checksum (32 Bit). The Frame Check Sequence is going to be created at the transmitter. The recipient also calculates a checksum and compares it to the checksum of the transmitter.
If they don't match, the datablock is going to be deleted.

Theoriestunde 3 - 16.10.2014








  • Wie lang ist der Header von IPv4 bzw. IPv6?

IPv4:
variabel, jedoch mindestens 20 Byte und maximal 60 Byte



IPv6:
40Byte

  • Wie viele unterschiedliche Info-Felder enthalten die Header?

Im Vergleich: Der IPv6-Header beinhaltet 4 umbenannte Info-Felder und ein neues Feld.

  • Das "hop limit"-Feld bei IPv6 kann mit welchem Feld von IPv4 verglichen werden?

Mit dem "Time To Live" Feld von IPv4.

  • Was ist die Aufgabe des "Flow Label" Feldes?

Dieses Feld steht für die Flussnummer, zu der ein Paket gehört.


Weiters kann es dazu verwendet werden, um Quality-of-Service-Garantien aufzubauen. (An ein Ziel Verzögerungsanforderungen schicken und Bandbreite reservieren)

  • Was ist Fragmentierung in IPv4? Gibt es etwas ähnliches bei IPv6?

IP-Fragmentierung ist die Aufteilung eines IP-Datenpakets in mehrere physikalische Datenblöcke.

Diese Fragmentierung gibt es aber nur, wenn ein Datenpaket zu groß ist.

Bei IPv6 gibt es keine Fragmentierung mehr. Falls ein Paket zu lang ist, wird der Absender mit einer "Packet Too Big"-Nachricht informiert. Dieser kann dann die Paketgröße verringern,, indem er unfragmentierte und kleiner Pakete erzeugt, oder dadurch, dass fragmentiert wird.

  • Beschreibe die Aufgaben des Feldes "Traffic Class"!

Dieses Feld legt die Priorität eines Paketes in der Flusssteuerung fest. Es wird auch oft "Priority" bezeichnet.

Pakete mit dem Wert von 0-7 dürfen sich bei einer hohen Netzwerkbelastung verlangsamen,

Pakete mit einem Wert von 8-15 hingegen bekommen beispielsweise Echtzeitanwendungen, sie verlangen eine schnelle Weiterleitung.

Theoriestunde 2 - 2.10.2014



Fragen:

Was bedeutet dotted decimal notation bei IPv4? 

 

Die Anordung der unterteilung der Bits. Nach 8 Bits steht ein punkt.
 

Wieviele Hexziffern braucht man für die Darstellung einer 128 bit IPv6-Adresse? 

 

8*4 Ziffern

Warum kann man nicht zweimal :: in einer IPv6-Adresse haben? 

 

Was passiert mit in den 16 bit langen Hexzahlen? 

 

Sie werden mit : unterteilt (x:x:x:x:x:x:x:x) x= 16bit zahl

Wie wird bei Cisco-Routern eine IPv6-Adresse bei einem Interface konfiguriert? 

 

Zu erst ganz normal ins Interface und dann mit ipv6 address und dann noch ipv6 enable

Was sind Anycast-Adressen bei IPv6? 

 

Alle direkt angschlossenen Devieses werden bei Anycast angesporchen

Was sind die Aufgabe von Link-Local-Addreses? 

Sind von einem Router automatisch zugewiesene Adressen die zur Netzwerkinternen komunikation genützt ohne Globale Adressen zu verwenden.

Wie funktioniert Stateless Autoconfiguration?

Übung 3 - 29.09 / 13.10.2014

Aufgabe:

Es sollen 4 Subnetze erstellt werden wo ein Switch Server, PC`s und Leptops verbindet.

AccessPoint:
Port 0 - Fast Ethernet
Port 1 - Wlan:
SSID eingeben: Passwort bei Authentication einstellen (WPA2-PSK - AES Verschlüsselung)

Laptop:
Laptop ausschalten und Fastethernet enfernen und Wlanmoduel einfügen
Desktop - PC Wireless
Tab Connect: Refresh
Netzwerk auswählen und mit richtigem Passwort Connecten
Unter Config: Statische IP Adresse zuweisen.
4 Subnetze für die IP: 172.15.9.0/24:

PC0/0: 172.15.9.0/28 - 172.15.9.15/28
PC0/1: 172.15.9.16/28 - 172.15.9.31/28
PC0/2: 172.15.9.32/28 - 172.15.9.47/28
PC0/3: 172.15.9.48/28 - 172.15.9.63/28

Router: 172.15.9.64/28 - 172.15.9.79/28

PC1/0: 172.15.9.80/28 - 172.15.9.95/28
PC1/1: 172.15.9.96/28 - 172.15.9.111/28
PC1/2: 172.15.9.112/28 - 172.15.9.127/28
PC1/3: 172.15.9.128/28 - 172.15.9.143/28

Subnetzmask: 255.255.255.240

Konfiguration von Peer (multiuser):
Incoming oder Outcoming einstellen (der Partner das Gegenteil).
"Creat new Link" um Peer zu verbinden.
IP + Peernumber + Passwort bei Outcoming
ACHTUNG! Crossovercable verwenden da es eine Router-Router Verbindung ist.

Wenn alles mit IPv4 funktioniert soll es mit IPv6 durchgeführt werden.
Verwendung von Dualstack.
IPv6 Adresse:
2a00:eb0:2fc::/48 (Host vom Provider)

IPv6 Infomationen:
128 Bit-Adressen
48 Bit sind Netzwerk und 64 Host
xxxx:xxxx:xxxx:Subnetze(2^16):Hosts(2^64)
Interface; /64 (einheitlich)
Router bekommt Adressen am besten durch Autoconfiguration.
2 Möglichkeiten:
-EUI64 Verfahren: Host wird aus Macadresse gebildet(48 Bit). In der Mitte wird :fffe: eingefügt
-Zufallszahlen

PC0/0: 2a00:eb0:2fc:11:/48
PC0/1: 2a00:eb0:2fc:12:/48
PC0/2: 2a00:eb0:2fc:13:/48
PC0/3: 2a00:eb0:2fc:14:/48

Router: 2a00:eb0:2fc:1:/48

PC1/0: 2a00:eb0:2fc:20:/48
PC1/1: 2a00:eb0:2fc:21:/48
PC1/2: 2a00:eb0:2fc:22:/48
PC1/3: 2a00:eb0:2fc:23:/48

Theoriestunde 1 - 25.09.2014




1. watching the video: why IPv6?


transitioning to IPV6:

bigger adressspace (128bits) not more 32bits like IPv4

3,4*10^38 IP addresses

Hex-Code

xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx (address structure)

no classes,no subnetting




Larger addressspace:

-Global reachability and flexibility

-Aggregation

-Multihoming

-Autoconfiguation

-Plug-and-Play

-End-to-end without NAT

-Renumbering




Mobility and security:

-Mobile IP RFC.compliant

-IPsec mandatory (or native) for IPv6




Simpler header:

-Routing efficineny

-Performance and forwarding rate scalability

-No broadcasts

-No checksums

-Extension headers

-Flow labels




Transition richness:

-Dual stack

-Translation




In our lifetime we dont see the end of IPv4, only we see IPv4 gets smaller and IPv6 gets bigger.




All devices are ready for IPv6.


2.answer the questions





-How many addresses are at IPv6? and how offen more then IPv4?

There are 3,4*10^38 addresses in IPv6 thats 7,9·1028 more then IPv4

-Why IPv6 addresses are in Hex?

Because the base is 16 and so there 6 more possebilitys to write in a smaller way.

-What is possible with IPv6 and not wit IPv4?

You dont need classes any more. You can rout direct.

Theoriestunde - 17.09.2014



Aufgabe 1:
Ansehen des Videos

Aufgabe 2:
Subnetze für die Angabe 195.34.12.0/24 die in 10 gleiche Netze geteilt werden soll:

1.) 195.34.12.0/28 - 195.34.12.24/28
2.) 195.34.12.25/28 - 195.34.12.49/28
3.) 195.34.12.50/28 - 195.34.12.74/28
4.) 195.34.12.75/28 - 195.34.12.99/28
5.) 195.34.12.100/28 - 195.34.12.124/28
6.) 195.34.12.125/28 - 195.34.12.149/28
7.) 195.34.12.150/28 - 195.34.12.174/28
8.) 195.34.12.175/28 - 195.34.12.199/28
9.) 195.34.12.200/28 - 195.34.12.224/28
10.) 195.34.12.225/28 - 195.34.12.249/28

Aufgabe 3:
Subnetzmask für 2 Hosts:
255.255.255.252

Aufgabe 4:
Es hat nur dann einen Sinn wenn es nur 2 Hosts hat. (Sowie bei Aufgabe 3).

Übung 1 - 15.09.2014



IPv4 32-Bit Adressen
-unicast 1 -> 1
-multicast 1 -> n
-broadcast 1-> alle im Subnetz
-----------------------------------------


IPv4 Klassen:
A,B,C - unicast >classfull
D - multicast
E - verloren


Classfull:
A: 10.0.0.0/8 8 Bit Network - 24 Bit Host (Netze 0..127, 2^24 Hosts)
B: 172.16.0.0/16 16 Bit Network - 16 Bit Host (Netze 128...191 ,2^16 Hosts)
C: 192.168.1.0/24 24 Bit Network - 8 Bit Host (Netze 192...223 ,2^8 Hosts)


VLSM/"Classless" (Variable Length subnetmask):
Die Länge der NW-Bits ist variabel und nicht mehr in Kassen geteilt.




Beispiel:
C-Netz der Schule: 193.36.189.0/24 (neu)
Netzmaske (dot,dezimal): 255.255.255.0 (alt)


Schulnetz in 2 Subnetze:
1.) Netzteil wir um 1 Bit erhöht somit Adressen von 0-127 möglich (wobei 0 das Netz ist).
0*2^7
193.36.189.0/25
....
....
193.36.189.127


2.) Netzteil wir um 1 Bit erhöht somit Adressen von 128-255 möglich (wobei 128 das Netz ist).
1*2^7
193.36.189.128
...
...
193.36.189.255




Beispiel mit 4 Subnetze:


1.) 193.136.189.0/26 - 193.136.189.63
2.) 193.136.189.64/26 - 193.136.189.127
3.) 193.136.189.128/26 - 193.136.189.191
4.) 193.136.189.128/26 - 193.136.189.255
Bits zur Adressierung:
2^7 2^6
0 0 | 0
0 1 | 64
1 0 | 128
1 1 | 192


Aufgabe 1: Erstellen eines Mininetzes zwischen 1 PC und 1 Router

Router und PC wird mit Crossover Kabel verbunden.
Konfigurationen der Router und PC siehe Bild.

Netzaufbau:










Konfiguration des PC:


Konfiguration des Routers:




Pingversuch:

















Aufgabe 2: Mininetz mit 1 Router und 4 Subnetze mit jeweils 1 Switch und 2 Endgeräten

Konfiguration durch die CLI (ComandLineInterface):
Router>enabel (zum "Einschalten" bzw Superpasswort)
Router#show running-config (Aktuelle Config abrufen)
#Show ? (Hilfe bei Begriffen)
#conf t (terminal Configuration)
#int fast0/0/0
#ip add

Neuer Blog

Hallo hier ist nun mein neuer blog :)

Es wurden neue Einträge erschaffen, etwas entfernt und auch einiges dazu geschrieben und ich hoffe es passt diesmal.
www.youtube.com/jakg100