2024-08-22 21:43:29 +02:00
|
|
|
# dhcpv6stateless
|
|
|
|
|
|
|
|
This -thing- is doing a DHCPv6 INFORMATION-REQUEST, waits for a response and displays it.
|
|
|
|
|
2024-08-24 18:04:00 +02:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
Pass the interface name as the first parameter:
|
|
|
|
|
2024-08-24 19:07:39 +02:00
|
|
|
```bash
|
|
|
|
$ dhcpv6stateless wlp3s0
|
|
|
|
server_id: 000100012e5a2a728c1645aa80ae
|
|
|
|
domain_name_servers:
|
|
|
|
- 2001:db8::1
|
|
|
|
- 2001:db8::2
|
|
|
|
domain_search_list:
|
|
|
|
- hello.world.
|
2024-08-24 18:04:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Logging
|
|
|
|
|
|
|
|
Logging is handled by [Rust env_logger](https://docs.rs/env_logger/latest/env_logger/).
|
|
|
|
|
2024-08-22 21:43:29 +02:00
|
|
|
## References
|
|
|
|
|
|
|
|
- <https://datatracker.ietf.org/doc/html/rfc8415#section-6.1>
|
|
|
|
- <https://datatracker.ietf.org/doc/html/rfc8415#section-5.1>
|