! Configuration by Bento ;) 
! mailto:mauricio@bentow.com.br

configure terminal
	hostname R1
	service password-encryption
	enable secret cisco
	
	line console 0
		password cisco
		login
		exit

	line vty 0 4
		password cisco
		login
		exit

	int f0/0
		ip address 192.168.1.1 255.255.255.0
		no shutdown
		exit
	
	int f0/1
		ip address 172.16.0.1 255.255.255.0
		no shutdown
		exit

	router ospf 64
		network 192.168.1.0 0.0.0.255 area 0
		network 172.16.0.1 0.0.0.255 area 0

	exit
exit
	
	

copy running-config startup-config