Tutorial [HOW-TO] Have a homemade Streetpass Relay

What method you are using?

  • Linux

    Votes: 93 7.9%
  • Android

    Votes: 133 11.4%
  • Router

    Votes: 226 19.3%
  • Windows

    Votes: 426 36.4%
  • A pony with a wifi antenna O.o?

    Votes: 292 25.0%

  • Total voters
    1,170
Status
Not open for further replies.

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
Thank you for the all the effort you've put into this. I'm still having the same problem as before. Before the second MAC change, I get internet access both on ConsoleNintendo3DS and my Wi-Fi connection that is being shared. When I click on the Nintendo Zone app on the 3DS, I get through with no errors. I didn't get any Streetpasses, though. Following the second MAC change, there is no internet access. I get "Error code 003-2005" when I try to use the Nintendo Zone app.

Try to change thw eireless adapter driver. During the start the MAC is not changed, so with the native MAC internet is accessible for you, but on the next mac change something happening wrong, most probably it is a driver issue.
 

retrotheorist

Member
Newcomer
Joined
Dec 24, 2014
Messages
14
Trophies
0
Age
33
XP
58
Country
United States
I have Intel Dual Band Wireless-AC 7260. I uninstalled the adapter. Installed old drivers from August. Now, when I tried running nzone.exe for the first time it gave me a "No hosted network compatible wireless interfaces found." But when I ran it again, it gave me no errors... only now, ConsoleNintendo3DS has no internet access, while my Wi-Fi adapter does. And the nintendo zone app on the 3DS gives me an error. I really have no clue.

EDIT: Uninstalled drivers again. Installed newest drivers. Now there's no internet access for ConsoleNintendo3DS not even at first. Though my Wi-Fi network does have internet access now weirdly.
Also ran maccheck.cmd. Same output as the first time I ran it. Two 1s and a bunch of 0s in the first line. A bunch of 2s and 0s in the second line.

I have no idea what's going on, so I bought a dd-wrt compatible router to try that method instead...
 

AngelOfDeathEC

Active Member
Newcomer
Joined
Feb 4, 2012
Messages
41
Trophies
0
XP
108
Country
Fiji
Hello everyone, just a question.... at 9.2U, which one is the best method for homepass with a ddwrt router? is there any updated tutorial?
 

AngelOfDeathEC

Active Member
Newcomer
Joined
Feb 4, 2012
Messages
41
Trophies
0
XP
108
Country
Fiji
AngelOfDeathEC Follow Before anything else link at the first post, it is up to date

Hey thanks, i get this message on ddrwt when i put the command:
echo -e "#!/bin/sh\nWLINT=\$(nvram get wl0_ifname)\nWLMAC=\$(nvram get \${WLINT}_hwaddr)\nWLSSID=\$(nvram get \${WLINT}_ssid)\nJOBS=\$(nvram get cron_jobs)\nHOSTAPDCONF=/tmp/\${WLINT}_hostap.conf\nHOSTAPDPID=/var/run/\${WLINT}_hostapd.pid\nPS=\"ps\"\nURL=http://nintendozone.no-ip.org?\nMACS=/tmp/\${0##*/}.macs\nSPDELAY=480\nMACNUM=0\nsetwl (){\n ifconfig \$WLINT down hw ether \$1 up\n sed -ri \"s/^bssid=.*/bssid=\$1/;s/^ssid=.*/ssid=\$2/\" \$HOSTAPDCONF\n while ! hostapd -B -P \$HOSTAPDPID \$HOSTAPDCONF; do\n PID=\$(\$PS | grep \$HOSTAPDPID | grep -v grep | sed 's/^ *//' | cut -d ' ' -f 1)\n : \${PID:+\$(kill \$PID)}\n sleep 1\n done\n}\ncase \"\$1\" in\nstart)\n echo starting \${0##*/}>&2\n if [ -z \$2 ]; then\n nvram set cron_jobs=\"\$(echo \"\$JOBS\" | sed -r s:#*\\(.*\$0.*\\):\\\\1:)\"\n else\n nvram set cron_jobs=\"\$(echo \"\$JOBS\" | grep -v \$1 | sed \"\\\$a* * * * * root \$0 \$2\")\"\n fi\n;;\nstop)\n echo stopping \${0##*/}>&2\n setwl \$WLMAC \$WLSSID\n nvram set cron_jobs=\"\$(echo \"\$JOBS\" | sed -r s:#*\\(.*\$0.*\\):#\\\\1:)\"\n;;\ntoggle)\n if \$(\$0 status); then\n \$0 stop\n else\n \$0 start\n fi\n;;\nrestart)\n \$0 stop\n \$0 start\n;;\nreload|force-reload)\n echo \${0##*/} MAC lists reloaded>&2\n rm -f \$MACS\n;;\nstatus)\n if \$(echo \"\$JOBS\" | grep \$0 | grep -qe '^#'); then\n echo \${0##*/} is not running>&2\n exit 1\n else\n echo \${0##*/} is running>&2\n exit 0\n fi\n;;\n*)\n [ -f \$MACS ] && MACNUM=\$(grep -v ^x \$MACS | wc -l) && DELAY=\$(((\$(date +%s)-\$(date -r \$MACS +%s))/60))\n [ \$MACNUM = 0 ] && NEWMACS=\$(wget -q -O - \$URL\$1)\n [ \$(echo -n \"\$NEWMACS\" | wc -c) != 0 ] && echo \"\$NEWMACS\" > \$MACS && MACNUM=\$(cat \$MACS | wc -l)\n [ \$MACNUM = 0 ] && sed -ri \"s/^x//\" \$MACS && MACNUM=\$(grep -v ^x \$MACS | wc -l)\n MACTOTAL=\$(cat \$MACS | wc -l)\n [ \$MACNUM = 0 ] || ([ \$MACTOTAL -lt \$SPDELAY ] && [ \${DELAY:-\$SPDELAY} -lt \$((\$SPDELAY/\$MACTOTAL)) ]) && exit\n RANDOM=\$(head /dev/urandom | hexdump -d | head -n 1 | sed -r \"s/^([0-9]+ +0{0,4})+//\")\n MAC=\$(grep -v ^x \$MACS | head -n \$((\$RANDOM%\${MACNUM}+1)) | tail -n 1)\n sed -ri \"s/^\$MAC/x&/\" \$MACS\n SSID=\$(echo \$MAC | cut -d , -f 2 -s)\n MAC=\$(echo \$MAC | cut -d , -f 1)\n : \${SSID:=\$WLSSID}\n setwl \$MAC \$SSID\n;;\nesac\nstopservice cron\nstartservice cron\n" > /tmp/nzone; mkdir -p /tmp/etc/config; echo -e "#!/bin/sh\n/tmp/nzone toggle\n" > /tmp/etc/config/nzone.sesbutton; chmod +x /tmp/nzone /tmp/etc/config/nzone.sesbutton
what else do i have to do?
 

endoverend

AKA zooksman
Member
Joined
Jun 6, 2013
Messages
2,846
Trophies
0
Website
zooksman.com
XP
2,917
Country
United States
When I run "nznone.exe start BASE256" on Windows 8 I get a message that says "msxm13.dll" and the ConsoleNintendo3DS does not start. I ran check.exe and maccheck.cmd and they both passed.

Nevermind, i got that working, but now I don't get the internet icon on the 3DS however the Nintendo Zone light is blinking.
 

RazorRamen

New Member
Newbie
Joined
Jan 11, 2015
Messages
3
Trophies
0
Age
39
XP
51
Country
United States
I'm trying to run the script through telent and this is what happens.

root@DD-WRT:~# wget -O /tmp/nzone.sh http://nintendozone.no-ip.org/install; chm
od +x /tmp/nzone.sh; /tmp/nzone.sh BASE16,GBATEMP
Connecting to nintendozone.no-ip.org (213.141.148.11:80)
nzone.sh 100% |*******************************| 4497 0:00:00 ETA
/tmp/nzone-install/install: line 100: iw: not found
No wireless interfaces found

What am I doing wrong?
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    K3Nv2 @ K3Nv2: Gay history is serious +1