Create Network Topology Diagrams
Example Prompt:
Example Response:
graph G {
node [shape=box];
A [label="Router"];
B [label="Switch 1"];
C [label="Switch 2"];
D [label="Server"];
E [label="Client 1"];
F [label="Client 2"];
G [label="Client 3"];
A -- B;
A -- C;
B -- D;
B -- E;
C -- D;
C -- F;
C -- G;
}
Related Tasks:
Diagnose Network Issues
Example Prompt:
Example Response:
Related Tasks:
Generate Configuration Scripts
Example Prompt:
Example Response:
! Set the hostname
hostname Router1
! Configure interfaces
interface GigabitEthernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
interface GigabitEthernet0/1
ip address 10.0.0.1 255.255.255.0
no shutdown
! Configure routing protocol
router ospf 1
network 192.168.1.0 0.0.0.255 area 0
network 10.0.0.0 0.0.0.255 area 0
! Set up access control lists
access-list 10 permit 192.168.1.0 0.0.0.255
access-list 10 deny any
! Apply the access list to the interface
interface GigabitEthernet0/0
ip access-group 10 in
Related Tasks:
Assess Network Security Posture
Example Prompt:
Example Response:
Related Tasks:
Create Network Documentation
Example Prompt:
Example Response:
Related Tasks: