i have a wireless lan router with DHCP. On connect I get an IP, but only if commodo is configured to allow all traffic. If it is configured normal, the WLAN card has an reduced connectivity (no IP) and so no internet is possible.
Dhcp client
Service Name: Dhcp
Process Name: svchost.exe -k netsvcs
Microsoft Service Description: Manages network configuration by registering and updating IP addresses and DNS names
(This is how your computer gets a Dynamic IP address so you can connect to the internet. If Internet Connection Sharing is enabled, you need DHCP Client. Also required for most DSL/Cable connections.)
DHCP is one of the cases of “which comes first”? To send packets, there first needs to be an IP address, but DHCP is the means to get the address to be used.
DHCP uses two predefined addresses for a host that is trying to get a real valid address.
The host takes the sender address of 0.0.0.0 (sometimes called the “me” address), and sends to the LAN local broadcast address of 255.255.255.255. A DHCP server will listen for a query, and reply using the underlying Ethernet MAC addresses to tell the host its assigned IP address.
A DHCP rule will look like this:
allow out protocol IP from host 0.0.0.0 to host 255.255.255.255
allow in&out protocol IP from LAN to LAN
The second rule is something of a catchall, as you may not know what the address is for your DHCP server. If it is your private LAN, then you know the IP address, but office environments have a bad habit of moving things around and not telling anybody.