I don't know how configurate this files:
/etc/network/interfaces
/etc/dhcp3/dhcp.conf
/etc/mcastbootd.conf
and how theirs bind to ifconfig? If it is need.
Because, when i typing on linux shell:
# mcastbootd -D
The system report me:
Could not connect 225.50.50.52 network is unreachable.
My dhcp.conf looks like this:
Code: Select all
###############################################################################
# Misc dhcp options #
###############################################################################
allow bootp;
ddns-update-style ad-hoc;
filename="AMINET.txt";
###############################################################################
# Extra Options for AMINO option space (used for multicast) #
###############################################################################
option space AMINO;
option AMINO.address code 1 = ip-address;
option AMINO.port code 2 = integer 16;
option AMINO.product code 3 = text;
option AMINO.option code 4 = text;
option AMINO.version code 5 = text;
option AMINO.middleware code 6 = ip-address;
option AMINO.mw_port code 7 = integer 16;
option AMINO.mw_port code 8 = integer 16;
option AMINO.mw_port code 9 = text;
###############################################################################
# AmiNET110 Configuration Section #
###############################################
class "AmiNET110 mboot"
{
match if (option vendor-class-identifier="aminoAMINET11xmboot") or
((substring(option vendor-encapsulated-options, 2, 9)="AMINET11x")
and (substring(option vendor-encapsulated-options, 13, 5)="mboot"));
vendor-option-space AMINO;
option AMINO.address 225.50.50.52;
option AMINO.port 11111;
}
class "AmiNET110 upgrd"
{
match if (option vendor-class-identifier="Aminoaminet110upgrd") or
((substring( option vendor-encapsulated-options,2,9)="aminet110")
and (substring( option vendor-encapsulated-options,13,5)="upgrd"));
vendor-option-space AMINO;
option AMINO.address 225.50.50.53;
option AMINO.port 11111;
}
class "AmiNET110 fisys"
{
match if (option vendor-class-identifier="Aminoaminet110fisys") or
((substring( option vendor-encapsulated-options, 2, 9)="aminet110")
and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
# vendor-option-space AMINO;
# option AMINO.middleware <mcast address>;
# option AMINO.mw_port <port>;
}
subnet 192.168.1.0 netmask 255.255.255.0 {
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option domain-name "blahblah.com";
option domain-name-servers 192.168.1.1,192.168.1.2;
option time-offset -5; # Eastern Standard Time
pool {
range dynamic-bootp 192.168.1.50 192.168.1.100;
range 192.168.1.101 192.168.1.200;
# AmiNET110 Member Classes
allow members of "AmiNET110 mboot";
allow members of "AmiNET110 upgrd";
allow members of "AmiNET110 fisys";
}
}
Code: Select all
# Configuration file: Fri Apr 11 12:39:40 2003
[Server]
LogLevel=4
MulticastTTL=1
[Image bootstrap.signed]
MulticastIPAddress=225.50.50.52
MulticastUDPPort=11111
FileName=/usr/local/amino/images/bootstrap.signed
Description=Linux bootstrap image
ImageType=1
SerialNumber=1
PacketSize=1456
CycleTime=0
[Filesystem mc2]
MulticastIPAddress=225.50.50.53
MulticastUDPPort=11111
ImageName=/usr/local/amino/images/mc2
Description=upgrade filesystem
SerialNumber=2
DirsPerCycle=128
DataRate=256
CycleTime=0
Code: Select all
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.1
netmask 255.255.255.0
broadcast 192.168.1.255
Code: Select all
eth0 Link encap:Ethernet HWaddr 00:11:D8:45:4E:D3
inet addr:192.168.1.1 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:128 (128.0 b)
Interrupt:17 Memory:e0000000-0
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:4301 errors:0 dropped:0 overruns:0 frame:0
TX packets:4301 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:697908 (681.5 KiB) TX bytes:697908 (681.5 KiB)