Install Bind, then in the named.conf file, add/change the listen-on line to something like this (where the value is the secondary IP address):
listen-on {62.212.66.56; };
then configure the zone that you want, such as
zone "mydomain.com" {
type slave;
file "slave/mydomain.com.slave";
masters {
1.2.3.4;
};
};
Where mydomain.com is the domain that you are a secondary for and 1.2.3.4 is the IP address of the primary nameserver.
But what I would suggest that you do is to allow BIND to listen on all your IP addresses. Also, make to add the name & address of your server to the master DNS server, something like:
mydomain.com. IN NS ns3.mydomain.com
ns3.mydomain.com. IN A 62.212.66.56
Based on your comment from above, it sounds like what you actually want to do is to run your own DNS, where you are the master.
For that, change the zone def from slave to master and remove the masters clause. Then create your zone data file (use named-xfer, dig, or just type in the information).
Then at your domain registar, change the IP of the DNS server for your domain be your IP address.