how to extract a paticular string from the text file with awk.

hello forum members

I have txt file which consists the following information.

Server: abababa.xyz.ap.mxmx.com
Address: 111.143.211.202
Name: rmxd.ipc.ap.mxmx.com
Address: 144.111.99.9

from the abovefile i have to extract only string "rmxd.ipc.ap.mxmx.com" through awk command. Iam looking forward from you.:b:

Thanks & regards
rajkumar_g

awk '/^Name:/{print $2}' file.txt