chiark / gitweb /
Bugfixes. Change script default mtu. Better eth addr parsing.
[vinegar-ip.git] / Makefile
index 0ecd8284983655c12c6d2e74279e0fb6f89f9621..15f0ea8908118c4ccd6af81f549bc7a523fda90e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,8 +22,8 @@
 #############################################################
 # You should edit the parameters below for your site
 
-SOURCE=                172.18.45.35
-DEST=          172.18.45.6
+SOURCE=                172.18.45.35/0:4:76:1a:92:13
+DEST=          172.18.45.6/0:04:76:1A:8F:C6
 
 UNIQUE=
 # set UNIQUE to something random for less observability
@@ -86,8 +86,9 @@ send-all.why: $(A_WHYS) Makefile
 
 send-%.pcap send-%.why:        ./make-probes.tcl Makefile
        ./make-probes.tcl --write $@ --mtu $(MTU) --upto $(PERPART) \
-               --source $(SOURCE) --dest $(DEST) --xseed "$* $(UNIQUE)" \
-               >send-$*.why
+               --source $(SOURCE) \
+               --dest $(DEST) \
+                --xseed "$* $(UNIQUE)" >send-$*.why
 
 %.log:         %.pcap lnumber-tcpdump.pl Makefile
                tcpdump -tnxvvs$$(($(MTU)+500)) -r $< >$@.1.tmp
@@ -112,6 +113,6 @@ clean:
                rm -f *.tmp *~ t u v
 
 realclean:     clean
-               rm -f $(TARGETS) *.pcap *.why *.log
+               rm -f $(TARGETS) *.pcap *.why *.log recv-*.diff
 
 # $Id$