Posted On April 9, 2019

IP Helper Address

kimconnect 0 comments
blog.KimConnect.com >> Networking , Windows >> IP Helper Address

What is it and how to use it?

When the DHCP Server is placed on a different subnet from the all its clients. It is important that the router at the disparate subnets be configured with an “IP helper-address” specifying the Server as its pass-through broadcast node. Here is a sample command to enable such configuration:

CORE01 (config-if)#ip helper-address 192.168.0.1

Be advised that the “IP-Helper” feature opens up a suite of ports:

Protocol

UDP Port

Timeserver (not same as NTP port UDP 123)

37

TACACS

49

DNS

53

BOOTP/DHCP Server

67

BOOTP/DHCP Client

68

TFTP

69

NetBIOS name   service

137

NetBIOS datagram   service

138

IEN-116 name   service

42

To enhance the network security posture, it may be necessary to close any unused port with commands such as this (Cisco):

CORE01 (config-if)#no ip forward-protocol udp 49

Leave a Reply

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

Related Post

Quick Command To Get Windows Version

To Get Windows Version as String: (Get-WmiObject -class Win32_OperatingSystem).Caption [deesee1]: PS C:\Users\kimconnect> (Get-WmiObject -class Win32_OperatingSystem).CaptionMicrosoft…

PowerShell: Remove an A-Host Record within Active Directory Integrated DNS Domain

Warning: this code is NOT 'production ready'. Please review and test on DEV environments carefully…

PowerShell: How To Make A System App Do Nothing

# How-To-Make-Existing-System-App-Do-Nothing.ps1# Provide variables$hive="REGISTRY::HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WORDPAD.EXE"$key="(default)"$value="C:\Windows\dummy.exe"$defaultValue="C:\Program Files\Windows NT\Accessories\WORDPAD.EXE"# Dummy-File-Creator.ps1$dummyFile="C:\Windows\dummy.exe"$output = new-object byte[] 1; (new-object Random).NextBytes($output);[IO.File]::WriteAllBytes($dummyFile, $output);if…