2 |
|
Basilisk II |
3 |
|
A 68k Macintosh emulator |
4 |
|
|
5 |
< |
Copyright (C) 1997-2003 Christian Bauer et al. |
5 |
> |
Copyright (C) 1997-2004 Christian Bauer et al. |
6 |
|
|
7 |
|
|
8 |
|
License |
362 |
|
|
363 |
|
Linux: |
364 |
|
The "ethernet card description" is the name of an Ethernet interface. |
365 |
< |
There are two approaches to networking with Basilisk II: |
365 |
> |
There are four approaches to networking with Basilisk II: |
366 |
|
|
367 |
|
1. Direct access to an Ethernet card via the "sheep_net" kernel module. |
368 |
|
The "ethernet card description" must be the name of a real Ethernet |
432 |
|
your network administrator about the nets and zones you can use |
433 |
|
(instead of the ones given in the example above). |
434 |
|
|
435 |
+ |
3. Access the network through a "tuntap" interface. |
436 |
+ |
The "ethernet card description" must be set to "tun". |
437 |
+ |
|
438 |
+ |
TUN/TAP provides packet reception and transmission for user |
439 |
+ |
space programs. It can be viewed as a simple Point-to-Point |
440 |
+ |
or Ethernet device, which instead of receiving packets from a |
441 |
+ |
physical media, receives them from user space program and |
442 |
+ |
instead of sending packets via physical media writes them to |
443 |
+ |
the user space program. |
444 |
+ |
|
445 |
+ |
A virtual network configuration script is required and the |
446 |
+ |
default is /usr/local/BasiliskII/tunconfig unless you specify |
447 |
+ |
a different file with the "etherconfig" item. |
448 |
+ |
|
449 |
+ |
This script requires you that "sudo" is properly configured |
450 |
+ |
so that "/sbin/ifconfig" and "/sbin/iptables" can be executed |
451 |
+ |
as root. Otherwise, you can still write a helper script which |
452 |
+ |
invokes your favorite program to enhance a user priviledges. |
453 |
+ |
e.g. in a KDE environment, kdesu can be used as follows: |
454 |
+ |
|
455 |
+ |
#!/bin/sh |
456 |
+ |
exec /usr/bin/kdesu -c /path/to/tunconfig $1 $2 |
457 |
+ |
|
458 |
+ |
4. Access the network through the user mode network stack. |
459 |
+ |
(the code and this documentation come from QEMU) |
460 |
+ |
|
461 |
+ |
By setting the "ethernet card description" to "slirp", |
462 |
+ |
Basilisk II uses a completely user mode network stack (you |
463 |
+ |
don't need root priviledges to use the virtual network). The |
464 |
+ |
virtual network configuration is the following: |
465 |
+ |
|
466 |
+ |
Basilisk II <------> Firewall/DHCP server <-----> Internet |
467 |
+ |
(10.0.2.x) | (10.0.2.2) |
468 |
+ |
| |
469 |
+ |
----> DNS server (10.0.2.3) |
470 |
+ |
| |
471 |
+ |
----> SMB server (10.0.2.4) |
472 |
+ |
|
473 |
+ |
Basilisk II behaves as if it was behind a firewall which |
474 |
+ |
blocks all incoming connections. You can use a DHCP client to |
475 |
+ |
automatically configure the network in Basilisk II. |
476 |
+ |
|
477 |
+ |
In order to check that the user mode network is working, you |
478 |
+ |
can ping the address 10.0.2.2 and verify that you got an |
479 |
+ |
address in the range 10.0.2.x from the Basilisk II virtual |
480 |
+ |
DHCP server. |
481 |
+ |
|
482 |
+ |
Note that ping is not supported reliably to the internet as |
483 |
+ |
it would require root priviledges. It means you can only ping |
484 |
+ |
the local router (10.0.2.2). |
485 |
+ |
|
486 |
+ |
When using the built-in TFTP server, the router is also the |
487 |
+ |
TFTP server. |
488 |
+ |
|
489 |
|
FreeBSD: |
490 |
|
The "ethertap" method described above also works under FreeBSD, but since |
491 |
|
no-one has found the time to write a section for this manual, you're on |
578 |
|
error alerts. All errors will then be reported to stdout. The default |
579 |
|
is "false". |
580 |
|
|
581 |
+ |
keyboardtype <keyboard-id> |
582 |
+ |
|
583 |
+ |
Specifies the keyboard type that BasiliskII should report to the MacOS. |
584 |
+ |
The default is "5" which is a "Apple Extended Keyboard II (ISO)", |
585 |
+ |
but many other numbers are understood by most versions of the MacOS |
586 |
+ |
(e.g. 11 is a "Macintosh Plus Keyboard with keypad", |
587 |
+ |
13 is a "Apple PowerBook Keyboard (ISO)" ) |
588 |
+ |
|
589 |
|
For additional information, consult the source. |
590 |
|
|
591 |
|
|
892 |
|
- Nigel Pearson <nigel@ind.tansu.com.au>: Mac OS X port |
893 |
|
- Lauri Pesonen <lpesonen@nic.fi>: Windows NT port |
894 |
|
- Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>: UAE 68k emulation |
895 |
+ |
- Michael Z. Sliczniak <msliczniak@comcast.net>: Mach memory fault recovery |
896 |
|
- and others... |
897 |
|
|
898 |
|
Special thanks to: |