The only thing missing from ifconfig are the gateway and DNS servers.
15.04 and newer
First, get the device name you're using. To get a list of devices and their status, type:
nmcli dev status
I got eth0.
To get the DNS and Gateway info, type:
nmcli dev show eth0
The output lists some device parameters including some IP4.DNS[x] entries, which show the DNS servers, and a IP4.ADDRESS[1] line which lists the IP.
On 16.04 and newer versions, there is an IP4.GATEWAY line which is self explanatory.
Up to 15.10, the gateway was shown on the address line after gw =.
Up to and including 14.10
You can get these with nm-tool (in Ubuntu versions prior to 15.04) which BTW is the command line version of network manager.
To run it just type in a terminal:
nm-tool
If you're using Ubuntu 15.04 or newer the nm-tool has been replaced by the nmcli command which is different. Check the section called "15.04 and newer" above this one in this case.