I am trying to programmingly find network interfaces info in FreeBSD. In linux, the interfaces are listed at /etc/network/interfaces file.
Is there any such file in FreeBSD? How can I extract that info?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you can always use
getifaddrs(3)here is an exmaple:EDIT: on linux if you need to fetch the link layer address of the interface you need to look for AF_PACKET sa_family, which is found in netpacket/packet.h
on linux, *bsd its called AF_LINK and its in net/if_dl.h