We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef6b48c commit 003e7f7Copy full SHA for 003e7f7
2 files changed
Dockerfile.goreleaser
@@ -4,6 +4,7 @@ RUN apk add --no-cache \
4
bash \
5
iputils \
6
iproute2 \
7
+ arp-scan \
8
curl \
9
ca-certificates \
10
bind-tools \
README.md
@@ -219,14 +219,7 @@ tasks:
219
220
For more advanced use cases just write a custom script that returns the IPv4s you need.
221
222
-```yaml
223
-...
224
-tasks:
225
- myhome:
226
- ipv4:
227
- interval: 30s
228
- command: ./print_desired_ipv4s.sh
229
- args: []
230
- lifetime: 4m
231
232
-```
+If you want to do the same MAC to address auto discovery in IPv4:
+`ip neigh show | grep -i "00:11:22:33:44:55" | awk '{print $1}'`
+or
+`arp-scan --localnet | grep -i "00:11:22:33:44:55" | awk '{print $1}'`
0 commit comments