Hi There Michel, Thanks for your response, i was hoping i could gather some interest just for a discussion. :) I have virtually solved the problem and have a nice working piece of software. Basically i turned to neighbor discovery protocols. In this Case The Cisco Discovery Protocol (CDP). There is a CDP MIB that provides me with a lot of information about what devices are connected to each interface and therefore, I am able to hop between devices because i know connected IP's. Basically, my prgram jumps to the device the user specifies as the start IP, entering in the SNMP information and the network address they wish to map. My program then goes to that device, gathers all system information about the device, then gathers information about each local interface. Then my program looks into CDP MIB and looks at the CDP Cache (where neighbor details are stored), creates an entry in the database for each connected IP address, then assigns the connected interface entry to the local interface entry. My program then hops to the next device and does the same, so on and so forth. I have parameters in my code to make sure all IPs visited are noted, and a list of IPs to visit to prevent the oprogram from needlessly visiting the same device twice. This way i can track the hop count and limit it if required. At the end of the data collection, my program then analyses the data and draws a network map and listens for traps :) its a bit like a very basic network management system (extremley basic) but it works sweetly :) Obviously this is not a perfect solution because CDP only operates on cisco devices and in some cases, CDP is disabled. There does exist a little protocol called the Link Layer Discovery Protocol (LLDP, refered to as 802.1ab i think). This is a vendor neutral neighbor discovery protocol and operates very much like CDP, but on any vendors device (Cisco, HP etc) providing the device supports it (my Catalyst 2950s do not, but the 2960's do). However, due to my limited budget the equipment i have does not support LLDP *sigh* Since doing this for my uni project i have become particulary interested in network mapping and management. It really is quite a variedand detailed topic :) Comments and thoughts are welcomed :)