Posted On March 28, 2019

DHCP Config on Enterasys Core Layer-3 Switch

kimconnect 0 comments
blog.KimConnect.com >> Networking >> DHCP Config on Enterasys Core Layer-3 Switch
# Setting ip helper-address to enable all VLANS to be able to access Internal DNS
router
enable
configure
interface vlan 5
ip helper-address 192.168.0.1
interface vlan 10
ip helper-address 192.168.0.1
interface vlan 50
ip helper-address 192.168.0.1
interface vlan 70
ip helper-address 192.168.0.1
interface vlan 100
ip helper-address 192.168.0.1

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Check TCP Connections of Server by Port Numbers

# Check-TCP-Connections.ps1# This function will output progress onto the console as well as returning a…

Websense Filtering Precedence

1.  Username 2.  Workstation IP 3.  Network Range 4.  User Groups 5.  OU Structure 6. …

PowerShell: Quickly Test Connectivity from a List of Sources toward a Destination on a Specific Port

# testRemotePort.ps1 $connectFrom=@' windows1 windows2 '@ $connectTo=@' \\servername\sharename '@ $testPort=445 $sources=@($connectFrom -split "`n")|%{$_.Trim()} $destinations=@($connectTo -split…