To do what? The OS won't support the keys and as a result a terminal from the host OS won't either. I am not 100% sure how SimH accesses the keyboard input and haven't tested a USB VMS keyboard with it. I fear the host OS won't map the keys forward?
FWIW my AB552A is USB with a PS/2 adapter.
Sampsa Laine <sampsa at mac.com> wrote:
My idea is to plug one of these into a Macbook Pro with a USB adapter, failing that, could I just get a 100+ key USB keyboard, do some tweaking and relabel the buttons?
sampsa <sampsa at mac.com>
mobile +358 40 7208932
On 17 Sep 2013, at 06:29, Kari Uusim ki <uusimaki at exdecfinland.org> wrote:
Might be worth to get one if you can manage to find one (for a reasonable price).
HP's price is very high. Don't know if they still deliver them.
I've tried to use the PS2-style LK keyboards connected through a PS2 - USB dongle with my zx6000 with no luck.
Kari
On 17.9.2013 6:12, Sampsa Laine wrote:
Just saw this on HoffmanLabs,
intrigued by the AB552A model.
http://labs.hoffmanlabs.com/node/19
sampsa <sampsa at mac.com>
mobile +358 40 7208932
.
--
Mark Benson
My idea is to plug one of these into a Macbook Pro with a USB adapter, failing that, could I just get a 100+ key USB keyboard, do some tweaking and relabel the buttons?
sampsa <sampsa at mac.com>
mobile +358 40 7208932
On 17 Sep 2013, at 06:29, Kari Uusim ki <uusimaki at exdecfinland.org> wrote:
Might be worth to get one if you can manage to find one (for a reasonable price).
HP's price is very high. Don't know if they still deliver them.
I've tried to use the PS2-style LK keyboards connected through a PS2 - USB dongle with my zx6000 with no luck.
Kari
On 17.9.2013 6:12, Sampsa Laine wrote:
Just saw this on HoffmanLabs, intrigued by the AB552A model.
http://labs.hoffmanlabs.com/node/19
sampsa <sampsa at mac.com>
mobile +358 40 7208932
.
Might be worth to get one if you can manage to find one (for a reasonable price).
HP's price is very high. Don't know if they still deliver them.
I've tried to use the PS2-style LK keyboards connected through a PS2 - USB dongle with my zx6000 with no luck.
Kari
On 17.9.2013 6:12, Sampsa Laine wrote:
Just saw this on HoffmanLabs, intrigued by the AB552A model.
http://labs.hoffmanlabs.com/node/19
sampsa <sampsa at mac.com>
mobile +358 40 7208932
.
On Tue, Sep 17, 2013 at 11:12 AM, Sampsa Laine <sampsa at mac.com> wrote:
Just saw this on HoffmanLabs, intrigued by the AB552A model.
http://labs.hoffmanlabs.com/node/19
I've got this kit (keyboard and mouse) connected to my rx2600. It's nothing special. I found the keys to be very stiff and "clicky". I actually keep a stash of LK411 keyboards around as the action is much softer than any keyboard I've managed to find thus far. I even have one on my PA-RISC 712/100.
Regards, Tim.
Thanks Brian,
I am out of the UK on business until mid next week. So will sort the info you require then.
Many thanks, Mark
On 16/09/2013 20:10, Brian Hechinger wrote:
Mark,
Once you have a proper image on your 1800 you can do the following
things to get in on the auto tunnel config tool stuff.
on your router add these:
access-list 10 permit 37.59.44.141
snmp-server community <snmp-community-name> RW 10
Then I'll need the following information from you:
Your external IP Addres:
Your external FQDN:
Is this a dynamic IP:
The DECnet area at this location:
The source interface on your router:
The email address you want updates sent to:
The snmp community from the above directions:
-brian
Mark,
Once you have a proper image on your 1800 you can do the following
things to get in on the auto tunnel config tool stuff.
on your router add these:
access-list 10 permit 37.59.44.141
snmp-server community <snmp-community-name> RW 10
Then I'll need the following information from you:
Your external IP Addres:
Your external FQDN:
Is this a dynamic IP:
The DECnet area at this location:
The source interface on your router:
The email address you want updates sent to:
The snmp community from the above directions:
-brian
On Sun, Sep 15, 2013 at 11:05:05PM -0000, Cory Smelosky wrote:
On 14 Sep 2013, at 21:33, Gregg Levine <gregg.drwho8 at gmail.com> wrote:
Hello!
What is the difference between the 1811w and 1841 and the DEC whosis
that Tim described? My trick knee (and everything else associated with
Doctor Who, (Dave, Corey)) tells me that probably not much.
I?d assume branding and expansion modules supported.
1811w is a fixed config router with 2x 100Mbit routed interfaces, a
built in 8x 100Mbit switch and a/b/g WiFi.
the 1841 has two 100Mbit routed interfaces and two WIC slots.
I don't have number in front of me but the 1841 does better PPS than the
1811w as well.
-brian
Hi guys,
I'm having some problems configuring my new Mikrotik RouterBoard RB2011UAS-2HnD-IN which is a great multiport router with wireless. However, it runs RouterOS which is fantastic, highly configurable and mostly beyond me!
I have managed to hook up a Netgear DM111PSP ADSL modem in bridge mode so that the MikroTik box is the ADSL end point. I have configured the router to allow HTTP and SSH traffic through the router but am struggling getting the rules right for the UDP routing and firewall configuration. I wondered whether there were folks out that who could shed some light. In my naive little brain I can see how configuration using IP chains is similar to how linux can be configured to provide the same functionality.
The router is on 192.168.1.2 and the HP microserver running Johnny's bridge is 192.168.1.126
Here are the forwarding rules I have:
/ip firewall filter
add chain=forward comment="default configuration" connection-state=established
add chain=forward comment="default configuration" connection-state=related
add chain=forward comment="Allow UDP connection to hpm from internet" dst-address=192.168.1.126 dst-port=4711 in-interface=pppoe-wan protocol=\
udp
add action=log chain=forward comment="Log everything else" log-prefix="IPv4 Drop forward:"
add action=drop chain=forward comment="default configuration" connection-state=invalid
add chain=input comment="default configuration" protocol=icmp
add chain=input comment="default configuration" connection-state=established in-interface=pppoe-wan
add chain=input comment="default configuration" connection-state=related in-interface=pppoe-wan
; Forward UDP bridge requests to HPM running the bridge
add chain=input comment="bridge traffic on 4711" dst-address=192.168.1.126 dst-port=4711 in-interface=pppoe-wan protocol=udp
add action=log chain=input comment="Log everything else" disabled=yes log-prefix="IPv4 Drop input:"
add action=drop chain=input comment="default configuration" in-interface=pppoe-wan
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" out-interface=pppoe-wan
; Forward webserver requests to SLAVE
add action=dst-nat chain=dstnat comment="Forward tcp:80 to slave" dst-address=92.27.220.250 dst-port=80 protocol=tcp to-addresses=192.168.1.229 \
to-ports=80
; Connect SSH/SFTP requests through to SLAVE
add action=dst-nat chain=dstnat comment="Forward ssh to slave" dst-address=92.27.220.250 dst-port=22 protocol=tcp to-addresses=192.168.1.229 \
to-ports=22
; Connect UDP requests on port 4711 to HPM running bridge
add action=dst-nat chain=dstnat comment="Forward bridge udp to hpm" dst-address=92.27.220.250 dst-port=4711 protocol=udp to-addresses=\
192.168.1.126 to-ports=4711
When I turn on logging before the drop rule I get the following
IPv4 Drop input: input: in:bridge-local out:(none), src-mac b4:99:ba:bf:46:e3, proto UDP, 192.168.1.126:41301->192.168.1.2:53, len 57
Any ideas folks?
Thanks in advance,
Mark.