• Bink D Drop Box entry without session password

    From Allen Prunty@1:2320/100 to All on Wednesday, August 17, 2016 05:42:08
    How do you create a node entry in your binkd configuration that does not use a session password.

    For me to use platinum express with binkd it's very easy but I have to have a node entry for every drop box I use. How do I create a node entry without a session password in the bink d. config.

    node 1:1/1.0@fidonet test.net;* no-password i c:\\pxw\\out1-1 c:\\pxw\\inbound

    What do I enter for it to not have a password?

    Allen

    ... FSX Net to me means... Friendship, Simplicity, and Xcellence
    --- Platinum Xpress/Win/WINServer v3.0pr5
    * Origin: LiveWire -=* Louisville, KY USA *=- LiveWireBBS.Com (1:2320/100)
  • From Wilfred van Velzen@2:280/464 to Allen Prunty on Wednesday, August 17, 2016 12:01:27
    Hi Allen,

    On 2016-08-17 05:42:08, you wrote to All:

    How do you create a node entry in your binkd configuration that does
    not use a session password.

    For me to use platinum express with binkd it's very easy but I have to have a node entry for every drop box I use. How do I create a node
    entry without a session password in the bink d. config.

    node 1:1/1.0@fidonet test.net;* no-password i c:\\pxw\\out1-1 c:\\pxw\\inbound

    What do I enter for it to not have a password?

    Enter the minus sign '-', where you would put the password...

    Bye, Wilfred.

    --- FMail-W32 1.69.25.189
    * Origin: FMail development HQ (2:280/464)
  • From Michiel van der Vlist@2:280/5555 to Allen Prunty on Wednesday, August 17, 2016 12:21:00
    Hello Allen,

    On Wednesday August 17 2016 05:42, you wrote to All:

    For me to use platinum express with binkd it's very easy but I have to have a node entry for every drop box I use. How do I create a node
    entry without a session password in the bink d. config.

    node 1:1/1.0@fidonet test.net;* no-password i c:\\pxw\\out1-1 c:\\pxw\\inbound

    What do I enter for it to not have a password?

    Simply enter a '-' for the password.

    node 1:1/1.0@fidonet test.net;* - i c:\\pxw\\out1-1 c:\\pxw\\inbound

    This works for other fields as well. E,g if you do not want an outbox, just an inbox:

    node 1:1/1.0@fidonet test.net;* - i - c:\\pxw\\inbound


    Cheers, Michiel

    --- GoldED+/W32-MSVC 1.1.5-b20130111
    * Origin: http://www.vlist.eu (2:280/5555)
  • From Allen Prunty@1:2320/100 to Michiel van der Vlist on Wednesday, August 17, 2016 06:43:20

    On Aug 17, 2016 12:19pm, Michiel van der Vlist wrote to Allen Prunty:

    MvdV> node 1:1/1.0@fidonet test.net;* - i c:\\pxw\\out1-1 c:\\pxw\\inbound

    MvdV> This works for other fields as well. E,g if you do not want an
    MvdV> outbox, just an inbox:

    MvdV> node 1:1/1.0@fidonet test.net;* - i - c:\\pxw\\inbound

    I've also broken the ipv6 barrier with this too... I can now send mail to Wilfred via ipv6. Haven't had anyone hit me back with ipv6 at ipv6.livewirebbs.com yet. Can't wait to see who comes in first on that one.

    Anyhow... one more question. I have no idea what to name my .ilo files to
    make it poll certain nodes. Not everyone is nice and crashes things over to you... would love it if I can figure out how to create an .ilo poll file. Surely there's a command line utility that will do this without having to use the binkd -P option

    Allen

    ... FSX Net to me means... Friendship, Simplicity, and Xcellence
    --- Platinum Xpress/Win/WINServer v3.0pr5
    * Origin: LiveWire -=* Louisville, KY USA *=- LiveWireBBS.Com (1:2320/100)
  • From Wilfred van Velzen@2:280/464 to Allen Prunty on Wednesday, August 17, 2016 13:18:05
    Hi Allen,

    On 2016-08-17 06:43:20, you wrote to Michiel van der Vlist:

    I've also broken the ipv6 barrier with this too... I can now send mail
    to Wilfred via ipv6. Haven't had anyone hit me back with ipv6 at ipv6.livewirebbs.com yet. Can't wait to see who comes in first on
    that one.

    Not working yet ('no route to host')...

    Anyhow... one more question. I have no idea what to name my .ilo
    files to make it poll certain nodes. Not everyone is nice and crashes things over to you... would love it if I can figure out how to create
    an .ilo poll file. Surely there's a command line utility that will do
    this without having to use the binkd -P option

    It's easy. Just convert the net and node number to 4 digit hex numbers and stick them together to get the base part of the filename.

    I've written a little python (>= 2.5) script for it, that I use in my other scripts:

    +++
    #!/usr/bin/python

    from sys import argv

    nodestr = argv[1]
    (zone, sep, nodestr) = nodestr.rpartition(":")
    (net , sep, nodestr) = nodestr.rpartition("/")
    (node, sep, pnt ) = nodestr. partition(".")

    def ToInt(obj):
    try:
    return int(obj)
    except:
    return 0

    zone = ToInt(zone)
    net = ToInt(net )
    node = ToInt(node)
    pnt = ToInt(pnt )

    print "%04x%04x" % (net, node)
    +++



    Bye, Wilfred.

    --- FMail-W32 1.69.25.189
    * Origin: FMail development HQ (2:280/464)
  • From Michiel van der Vlist@2:280/5555 to Allen Prunty on Wednesday, August 17, 2016 13:51:49
    Hello Allen,

    On Wednesday August 17 2016 06:43, you wrote to me:

    files to make it poll certain nodes. Not everyone is nice and crashes things over to you... would love it if I can figure out how to create
    an .ilo poll file. Surely there's a command line utility that will do
    this without having to use the binkd -P option

    With the "main" binkd running in server+client mode I type in another window:

    binkd -nP<node number> binkd.cfg


    Cheers, Michiel

    --- GoldED+/W32-MSVC 1.1.5-b20130111
    * Origin: http://www.vlist.eu (2:280/5555)
  • From Michiel van der Vlist@2:280/5555 to Allen Prunty on Wednesday, August 17, 2016 13:56:17
    Hello Allen,

    On Wednesday August 17 2016 06:43, you wrote to me:

    I've also broken the ipv6 barrier with this too... I can now send mail
    to Wilfred via ipv6. Haven't had anyone hit me back with ipv6
    at ipv6.livewirebbs.com yet. Can't wait to see who comes in first on
    that one.

    D:\FIDO\FMAIL>ping ipv6.livewirebbs.com

    Ping ipv6.livewirebbs.com [2602:306:83c1:a710:ed7c:8816:bcf9:e243] mit 32 Bytes Daten:

    Zielhost nicht erreichbar.
    Zielhost nicht erreichbar.
    Zielhost nicht erreichbar.
    Zielhost nicht erreichbar.

    Ping-Statistik f?r 2602:306:83c1:a710:ed7c:8816:bcf9:e243:
    Pakete: Gesendet = 4, Empfangen = 0, Verloren = 4 (100% Verlust),

    So no cigar yet...

    Are you sure the IPv6 address is correct?


    Cheers, Michiel

    --- GoldED+/W32-MSVC 1.1.5-b20130111
    * Origin: http://www.vlist.eu (2:280/5555)
  • From Wilfred van Velzen@2:280/464 to Michiel van der Vlist on Wednesday, August 17, 2016 15:03:22
    Hi Michiel,

    On 2016-08-17 13:56:17, you wrote to Allen Prunty:

    I've also broken the ipv6 barrier with this too... I can now send
    mail to Wilfred via ipv6. Haven't had anyone hit me back with ipv6
    at ipv6.livewirebbs.com yet. Can't wait to see who comes in first on
    that one.

    MvdV> D:\FIDO\FMAIL>ping ipv6.livewirebbs.com

    MvdV> Ping ipv6.livewirebbs.com [2602:306:83c1:a710:ed7c:8816:bcf9:e243]
    MvdV> mit 32 Bytes Daten:

    MvdV> Zielhost nicht erreichbar.
    MvdV> Zielhost nicht erreichbar.
    MvdV> Zielhost nicht erreichbar.
    MvdV> Zielhost nicht erreichbar.

    MvdV> Ping-Statistik f?r 2602:306:83c1:a710:ed7c:8816:bcf9:e243:
    MvdV> Pakete: Gesendet = 4, Empfangen = 0, Verloren = 4 (100% Verlust),

    MvdV> So no cigar yet...

    MvdV> Are you sure the IPv6 address is correct?

    It's different from the one I see his incomming connections from:

    2602:306:83c1:a710:9d54:ff3c:6d09:1fcf

    I can make a binkp connection to that address...


    Bye, Wilfred.

    --- FMail-W32 1.69.25.189
    * Origin: FMail development HQ (2:280/464)
  • From Michiel van der Vlist@2:280/5555 to Wilfred van Velzen on Wednesday, August 17, 2016 15:32:19
    Hello Wilfred,

    On Wednesday August 17 2016 15:03, you wrote to me:

    MvdV>> Are you sure the IPv6 address is correct?

    It's different from the one I see his incomming connections from:

    2602:306:83c1:a710:9d54:ff3c:6d09:1fcf

    I can make a binkp connection to that address...

    Yes, so can I. It also pings.

    However... it is not a SLAAC address (no ff fe in the middle) , so it probably is a PE address. PE addresses are volatile, it may not work tomorrow. What we need is a non volatile address.


    Cheers, Michiel

    --- GoldED+/W32-MSVC 1.1.5-b20130111
    * Origin: http://www.vlist.eu (2:280/5555)
  • From Michiel van der Vlist@2:280/5555 to Allen Prunty on Wednesday, August 17, 2016 18:37:29
    Hello Allen,

    On Wednesday August 17 2016 13:56, I wrote to you:

    Ping-Statistik f?r 2602:306:83c1:a710:ed7c:8816:bcf9:e243:
    Pakete: Gesendet = 4, Empfangen = 0, Verloren = 4 (100% Verlust),

    So no cigar yet...

    Are you sure the IPv6 address is correct?

    Can we discuss this in the IPV6 echo?


    Cheers, Michiel

    --- GoldED+/W32-MSVC 1.1.5-b20130111
    * Origin: http://www.vlist.eu (2:280/5555)
  • From Andrew Leary@1:320/219 to Allen Prunty on Wednesday, August 17, 2016 13:09:41
    Hello Allen!

    17 Aug 16 05:42, you wrote to all:

    How do you create a node entry in your binkd configuration that does
    not use a session password.

    For me to use platinum express with binkd it's very easy but I have to have a node entry for every drop box I use. How do I create a node
    entry without a session password in the bink d. config.

    node 1:1/1.0@fidonet test.net;* no-password i c:\\pxw\\out1-1 c:\\pxw\\inbound

    What do I enter for it to not have a password?

    A dash (-) in place of the password indicates no password.

    Andrew

    --- GoldED+/LNX 1.1.5-b20160322
    * Origin: Phoenix BBS * phoenix.bnbbbs.net (1:320/219)
  • From mark lewis@1:3634/12.73 to Allen Prunty on Wednesday, August 17, 2016 15:49:06

    17 Aug 16 05:42, you wrote to All:

    How do you create a node entry in your binkd configuration that does not use a session password.

    just like the distributed binkd.txt does... you put a dash '-' in that field...

    )\/(ark

    Always Mount a Scratch Monkey

    ... Oh me nerves!
    ---
    * Origin: (1:3634/12.73)
  • From Ray Quinn@1:214/22 to Allen Prunty on Wednesday, August 17, 2016 19:27:00
    Allen Prunty wrote to Michiel van der Vlist <=-

    I've also broken the ipv6 barrier with this too... I can now send
    mail to Wilfred via ipv6. Haven't had anyone hit me back with ipv6
    at ipv6.livewirebbs.com yet. Can't wait to see who comes in first on
    that one.

    Here is what I get with IPV6 ping...

    sbbs@bbs:~$ ping6 -c 5 ipv6.livewirebbs.com
    PING ipv6.livewirebbs.com(2602:306:83c1:a710::48) 56 data bytes
    64 bytes from 2602:306:83c1:a710::48: icmp_seq=1 ttl=60 time=210 ms
    64 bytes from 2602:306:83c1:a710::48: icmp_seq=2 ttl=60 time=209 ms
    64 bytes from 2602:306:83c1:a710::48: icmp_seq=3 ttl=60 time=216 ms
    64 bytes from 2602:306:83c1:a710::48: icmp_seq=4 ttl=60 time=216 ms
    64 bytes from 2602:306:83c1:a710::48: icmp_seq=5 ttl=60 time=226 ms

    === ipv6.livewirebbs.com ping statistics ---
    5 packets transmitted, 5 received, 0% packet loss, time 4004ms
    rtt min/avg/max/mdev = 209.298/215.783/226.087/5.972 ms



    _____
    , |[][]|
    ,__| ______| |
    ,__/__]|| ________ | D8 |
    |__!___!!`--'L_______\ |__________|() ___________
    "(_)[___]====(_)(_)=| \_(___________)_/__/=(_)===(_)~'

    73 de Ray Quinn W6RAY
    Visalia, CA USA DM06ih


    ... An unbiased opinion is always absolutely valueless.
    === MultiMail/Linux v0.50
    --- SBBSecho 3.00-Linux
    * Origin: US 99 BBS | Visalia, CA | bbs.quinnnet.org (1:214/22)
  • From Rob Swindell to Wilfred van Velzen on Friday, August 26, 2016 13:52:02
    Re: Re: Bink D Drop Box entry without session password
    By: Wilfred van Velzen to Allen Prunty on Wed Aug 17 2016 12:01 pm

    node 1:1/1.0@fidonet test.net;* no-password i c:\\pxw\\out1-1 c:\\pxw\\inbound

    What do I enter for it to not have a password?

    Enter the minus sign '-', where you would put the password...

    But what if my password *is* a minus sign!?! :-)

    digital man

    Synchronet "Real Fact" #12:
    Synchronet was the first BBS software to ship with built-in RIPscrip support. Norco, CA WX: 78.3°F, 53.0% humidity, 7 mph E wind, 0.00 inches rain/24hrs
  • From Wilfred van Velzen@2:280/464 to Rob Swindell on Friday, August 26, 2016 23:05:36
    Hi,

    On 2016-08-26 13:52:02, Rob Swindell wrote to Wilfred van Velzen:
    about: "Re: Bink D Drop Box entry without session password":

    node 1:1/1.0@fidonet test.net;* no-password i c:\\pxw\\out1-1
    c:\\pxw\\inbound

    What do I enter for it to not have a password?

    Enter the minus sign '-', where you would put the password...

    But what if my password *is* a minus sign!?! :-)

    Than you need to seek the kind of proffesional help, not available in fidonet! ;)

    Bye, Wilfred.


    --- FMail-W32 1.71.5.204-B20160823
    * Origin: Native IPv6 connectable node (2:280/464)
  • From Mick Manning@1:249/307 to Wilfred van Velzen on Friday, August 26, 2016 21:08:00
    WTF :-)

    Mick
    Oxford Mills Remote BBS
    oxfordmi.synchro.net
    fsxNET 21:1/156

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Oxford Mills Remote BBS (1:249/307)
  • From Tommi Koivula@2:221/6 to Rob Swindell on Saturday, August 27, 2016 08:08:50
    On 26.8.2016 23:52, Rob Swindell :

    What do I enter for it to not have a password?

    Enter the minus sign '-', where you would put the password...

    But what if my password *is* a minus sign!?! :-)

    Don't tell anyone! :-)

    'Tommi

    ---
    * Origin: *** nntp://fidonews.mine.nu *** Finland *** (2:221/6.0)
  • From Rob Swindell to Tommi Koivula on Friday, August 26, 2016 22:28:40
    Re: Bink D Drop Box entry without session password
    By: Tommi Koivula to Rob Swindell on Sat Aug 27 2016 08:08 am

    On 26.8.2016 23:52, Rob Swindell :

    What do I enter for it to not have a password?

    Enter the minus sign '-', where you would put the password...

    But what if my password *is* a minus sign!?! :-)

    Don't tell anyone! :-)

    I won't if you won't.

    digital man

    Synchronet "Real Fact" #16:
    Synchronet first supported FidoNet networking (with SBBSFIDO) in 1992.
    Norco, CA WX: 63.0°F, 82.0% humidity, 5 mph SSE wind, 0.00 inches rain/24hrs