Home
Help
Search
Login
Register
OPNsense Forum
»
English Forums
»
General Discussion
»
How to see what static IPs are active
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to see what static IPs are active (Read 7466 times)
meazz1
Jr. Member
Posts: 90
Karma: 1
How to see what static IPs are active
«
on:
February 21, 2020, 02:33:44 am »
Where is the menu to see list of static IP address being used on firewall?
I can see DHCP leases under Services-->DHCPv4--?Leases.
Is there an entry for the Static IPs being used?
My router uuses 192.168.4.1 & DHCP server 192.168.4.10 to 192.168.4.100.
I have assigned static IP 192.168.4.2 to 192.168.4.9.
Logged
johnsmi
Jr. Member
Posts: 60
Karma: 9
Re: How to see what static IPs are active
«
Reply #1 on:
February 21, 2020, 04:59:05 am »
Services -> DHCPv4 -> Leases
There you can see both, dynamically and statically assigned IPs. The last column
Lease type
shows
static
for statically assigned DHCP mappings.
In case you assigned the IPs manually on each client
you will have to refer to the sheet of paper where you wrote it down.
With a shell you can do a quick check if the hosts are up:
Code:
[Select]
for i in 2 3 4 5 6 7 8 9 ;do ping -c1 192.168.4.$i; done
Code:
[Select]
arp -a | sort -k2
lists what you may want to enter at
DHCP Static Mappings for this interface.
on the bottom of: Services -> DHCPv4 -> [Interface]
Assigning static addresses via DHCP can make life easier when you want to change the subnet.
Logged
meazz1
Jr. Member
Posts: 90
Karma: 1
Re: How to see what static IPs are active
«
Reply #2 on:
February 22, 2020, 03:11:49 am »
Thanks
Logged
michael
Newbie
Posts: 25
Karma: 1
Re: How to see what static IPs are active
«
Reply #3 on:
February 22, 2020, 04:17:02 am »
Also, if you go to Reporting > Traffic and then wait a minute the active IPs on your LAN will populate as it logs traffic per address, you might need to scroll down to see them.
Logged
Print
Pages: [
1
]
« previous
next »
OPNsense Forum
»
English Forums
»
General Discussion
»
How to see what static IPs are active