#set service dhcp-relay interface YOUR_INTERFACE
Or,
#set service dhcp-relay server YOUR_SERVER_IP
#commit
#save
Reference:
https://docs.vyos.io/en/equuleus/configuration/service/dhcp-relay.html
This blog consists of configurations and processes I have performed in a lab environment. In no way do I recommend or imply these processes need to be followed or are the correct way to execute on any network. Perform at your own risk. Also, please feel free to leave comments if my configurations are too old/need updating.
What's Popular
-
I know there are a few more ways to do these procedures, but this is just one example in this overall SOP. 1. First, from the UCS mana...
-
• First off, VLANs are sorted through identifiers. Regular VLANs are identified with 1-4096. • There are actually VLANs 1-1001 which ar...
-
Via GUI: • Click on Device tab > Setup link > Operations tab • Click on shutdown device under device operations on the right...
Meh, Whatever is Featured
Linking Active Directory to Palo Alto
###First you need to create a server profile under the LDAP section. DEVICE>Server Profiles>LDAP then click on the Add down at the bo...
Saturday, September 9, 2023
Setup DHCP Relay VyOS
Set an IP on an Interface in VyOS
#set interfaces ethernet YOUR_INTERFACE address YOUR_IP|dhcp|dhcpv6
#set interfaces ethernet YOUR_INTERFACE description DESCRIPTION_FOR_INTERFACE
#set interfaces ethernet YOUR_INTERFACE disable
#set interfaces ethernet YOUR_INTERFACE enable
#commit
#save
Reference:
https://docs.vyos.io/en/equuleus/configuration/interfaces/ethernet.html
Thursday, June 22, 2023
Setting Passwords Cisco Router/Switch
Set a password for Console login
RTR-01#config t
RTR-01(config)#line console 0
RTR-01(config-line)#login (turns on login enable ability. Otherwise will not prompt)
RTR-01(config-line)#password cisco123
RTR-01(config-line)#end
Set an enable secret password
RTR-01#config t
RTR-01(config)#enable secret cisco123
RTR-01(config)#exit
RTR-01#disable (takes you back to user mode)
RTR-01>enable
Enter password: YOUR_PASSWORD_NOW
Set VTY password
RTR-01#config t
RTR-01(config)#line vty 0 15
RTR-01(config-line)#login (enables the login feature to the VTY line)
RTR-01(config-line)#password cisco123 (sets the password for the line login)
RTR-01(config-line)#end
Enable Global Password Encryption
RTR-01#config t
RTR-01(config)#service password-encryption