Thanks, after I provided the service name, ip/pppoe asked for username
and password. However I still didnt have Internet access. I tried
ipconf/outside but it times out. Here is the complete output of
ip/pppoe:

http://pastebin.com/V7ACsh6g

Did I forgot something?

Thanks: Bela

2010/2/23 Russ Cox <r...@swtch.com>:
>> 00304894958d -> 00508d68c9c0 type 0x8863
>>        vers 1 type 1 code 0x7 sessid 0x0 length 63
>>        0x102 22: ac 'pecs-nas1.tvnetwork.hu'
>>        0x101 9: service 'TvNetWork'
>>        0x104 20: ac cookie 31e0aff8b09a633faae5b9685fdfbd0dad000000
>> dropping unwanted pkt: no matching service name
>
> try adding
>     -S TvNetWork
> to your command line.
>
> it looks like in pppoe.c the block
>
>        if((s = findtag(pkt, TagSrvName, &len, 0)) == nil)
>                return bad("no matching service name");
>        if(len != strlen(srvname) || memcmp(s, srvname, len) != 0)
>                return bad("no matching service name");
>
> should be inside a if(srvname[0] != '\0') { ... }.
>
>

Reply via email to