Tracer Commands - Sguinther/Fall2021-NET330-guinther GitHub Wiki

IP Route {

  • ip route 0.0.0.0 0.0.0.0 ${ip} This command sets the default route for a router in a network. }

IP access list {

  • ip access-list standard ${name}
  • then: permit/deny ${ip} ${wildcard} or
  • ip access-list extended ${name}
  • ${protocol} ${source_Ip} ${wc_mask} ${dst_ip} ${wc_mask}

so example run:

  • ip acess-list standard net1

  • deny host x.x.x.x

  • deny x.x.x.0 0.0.0.255

  • permit any

  • int eth0/1

  • ip access-group net1 in }