# Problem
A client has asked you to verify some data packets for them. In the output, they have requested you to look at a specific packet and give them feedback on what activity is occurring.
Use the packet capture output to find the following information:
* Source address.
* Multicast address.
| No. | Time | Source | Destination | Protocol | Length | Info |
| --------- | ------------ | --------------------------- | ----------- | -------- | ------ | -------------------------------------------- |
| `37485` | `29.092092` | `fe80::46d9:e7ff:fe9f:f36b` | `ff02::1:2` | `DHCPv6` | `114` | `Solicit XID: 0xfa92f2 CID: 00020000ab11...` |
| `2027...` | `156.993842` | `fe80::46d9:e7ff:fe9f:f36b` | `ff02::1:2` | `DHCPv6` | `114` | `Solicit XID: 0xfa92f2 CID: 00020000ab11...` |
| `3653...` | `283.656135` | `fe80::46d9:e7ff:fe9f:f36b` | `ff02::1:2` | `DHCPv6` | `114` | `Solicit XID: 0xfa92f2 CID: 00020000ab11...` |
```
Frame 37485: 114 bytes on wire (912 bits), 114 bytes captured (912 bits) on interface 0
Ethernet II, Src: Ubiquiti_9f:f3:6b (44:d9:e7:9f:f3:6b), Dst: IPv6mcast_01:00:02 (33:33:00:01:00:02)
Internet Protocol Version 6, Src: fe80:46d9:e7ff:fe9f:f36b, Dst: ff02::1:2
User Datagram Protocol, Src Port: 546, Dst Port: 547
Source Port: 546
Destinationi Port: 547
Checksum: 0x5d50 [unverified]
[Checksum Status: Unverified]
[Stream index: 32]
DHCPv6
Message type: Solicit (1)
Transaction ID: 0xfa92f2
Rapid Commit
Identity Association for Non-temporary Address
Option Request
Client Identifier
```
What is the source attempting to do?
* Renew a lease.
* Request an IP.
* Advertise DHCP Service.
* Find a DHCP Server.
# Process
...
# Answer
* Source address - `fe80:46d9:e7ff:fe9f:f36b`.
* Multicast address - `ff02::1:2`.
The source is attempting to find a DHCP server.