What is my TFTP servers IP?

in CCNA & CCENT
I am trying to download the latest IOS version for my C2950, but while following the download instructions via Cisco's website page it is asking that I have my TFTP server's IP address. How do I get that information???
In case it helps, the link I am following is:
Upgrading Software Images on Catalyst 2950 and 2955 Series Switches Using the Command Line Interface - Cisco Systems
In case it helps, the link I am following is:
Upgrading Software Images on Catalyst 2950 and 2955 Series Switches Using the Command Line Interface - Cisco Systems
Comments
If you don't have tftp software I would suggest tftpd32
Switch#archive tar /xtract tftp://192.168.1.3/c2950-i6k2l2q4-tar.121-22.EA14.tar flash:
1) If connecting into your home network, connect a crossover cable from a port on the 2950 to a port on your home switch. Then, you can assign an IP Address to the switch.
a) Connect Switch to Home Network
b) Assign the port (that crossover cable is connected to) to VLAN 1 and assign an IP address (you don't have to use the address and netmask I used below, but it does have to be on the same subnet as your home network) to VLAN 1
enable
configure terminal
interface vlan 1
ip address 192.168.0.12 255.255.255.0
no shutdown
interface Fa0/24
switchport access vlan 1
end
You will use whatever port you connected the crossover cable to (not necessarily Fa0/24)
3) Install and start the TFTP Server.
4) Place the IOS file in your TFTP Folder. You should be able to find this by inspecting the options on the TFTP Server.
5) Transfer the IOS image to your Switch
(for bin images)
enable
copy tftp flash
then supply the IP Address - 192.168.0.12 or whatever address you chose - and source file name (including .bin) when requested.
(for tar images)
enable
archive tar /xtract tftp://192.168.0.12/c2950-i6k2l2q4-tar.121-22.EA14.tar flash:
A Couple of notes:
1) The only difference between the tar and bin images [as I understand it] is that the tar also installs the web management (SDM?). If you plan to use only the CLI, then the bin is fine, and easier to install.
2) The crypto image will have a k in the filename. For routers it is usually k9, but for 2950 switches it seems to be k2. The newest IOS as best I can tell is: c2950-i6k2l2q4-tar.121-22.EA14.tar (tar image) or c2950-i6k2l2q4.121-22.EA14.bin (bin image)
If you prefer to just connect your tftp server directly into the 2950, the procedure is roughly the same, except you will use a straight-through cable and will need to assign an IP address to the PC's NIC also - and it should be on the same subnet as the one you chose for the switch, but different than your home network. You could use the same subnet, but will have to disable your Wireless or it will likely send all your data to your home router/switch instead of the 2950.
Security: CCNA [ ]
Virtualization: VCA-DCV [ ]