Difference between pages "Netcat" and "FRITZ!Box"

From Linuxintro
(Difference between pages)
imported>ThorstenStaerk
 
imported>ThorstenStaerk
 
Line 1: Line 1:
netcat lets you stream data of almost any kind across a tcp connection. For example, let's say you have two machines of similar configuration and you want to replicate the hard drive of one over to the other; you want to copy the "template" machine to a "target" machine.Given that both machines are online and the '''target''' machine has an IP of 192.168.1.2 you can do this:
+
#REDIRECT [[FRITZ!Box 7312]]
 
 
On the target machine
 
$ nc -l -p 8000 | dd of=/dev/hda1
 
''The target machine is now listening on port 8000. Anything it receives it will write to the first partition of the first drive (hda1)''.
 
 
 
On the template machine
 
$ dd if=/dev/hda1 | nc 192.168.1.2 8000
 
''The first partition of the template machine is read and piped to netcat, which sends it to the IP address and correct port of the target machine.''
 
 
 
If you use this technique don't forget the [http://wiki.linuxquestions.org/wiki/MBR Master Boot Record]. You can copy it with:
 
$ [[dd]] if=/dev/hda bs=446 count=1
 
 
 
= See also =
 
* [[nmap]]
 
* [[wireshark]]
 
* [[tcpdump]]
 
* [[netstat]]
 
 
 
[[Category:Networking]]
 
[[Category:Command]]
 

Latest revision as of 15:34, 20 July 2012

Redirect to: