Harry Lachanas wrote:
> Any Vlan support included ???
absolutely
> > if yes which package(s) I should apk_add ???>
vconfig is in busybox these days; or you can apk_add vconfig
As far as setting up the vlans, I tend to use the
/etc/network/interfaces file for all configuration of interfaces
(bonding,vlans,bridges, etc)
Example vlan config:
/etc/modules
8021q
/etc/network/interfaces
-- the physical interface
auto eth0
iface eth0 inet manual
up ifup eth0.300
up ifup eth0.200
down ifdown eth0 300
down ifdown eth0 200
-- vlan 200
iface eth0.200 inet dhcp
pre-up vconfig add eth0 200
hostname alpine-vlan-200
post-down vconfig rem $IFACE
-- vlan 300
iface eth0.300 inet static
pre-up vconfig add eth0 300
address 192.168.1.1
netmask 255.255.255.0
post-down vconfig rem $IFACE
That lets you manage the vlans with an ifup/ifdown:
ifup eth0 <- brings up all vlans
ifdown eth0.200 <- takes down 200, but leaves up the 300 vlan iface
HTH
---
Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org
Help: alpine-devel+help@lists.alpinelinux.org
---
I would enjoy some guidelines on how to start the web interface. :-)
I did an
setup-alpine-web
loaded all I could ( acf* )
mini_httpd started
but all I could see was a page
with system health. :-(
I've setup the .htpasswd file in some directory that I thought was
proper but never managed to login ( after hitting the login button ).
I've also found out that as soon as I issue
a
setup-alpine-web
It starts doing all sorts of stuff reconfiguring the system setting up
interfaces and changing the system name. :-(
Please help !!
Another issue is the number of packages that exist on the ISO images ....
and its really HUGE !!!!
I noticed that there is as script in the sdk to select a group of
packages and create an ISO image after downloading stuff from www.
But as I played a bit with it I noticed that wasn't functional and
started to download stuff from an old version.!
I most likely would like to avoid having gcc as well as other goodies
available on a production firewall-router. :-)
Cheers and Thanks.
Harry.
---
Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org
Help: alpine-devel+help@lists.alpinelinux.org
---
On Wed, 2008-12-10 at 10:17 +0200, Harry Lachanas wrote:
> I would enjoy some guidelines on how to start the web interface. :-)> > I did an> setup-alpine-web
this script is something i started with, but not really finished. The
idea is a web based alpine-setup for headless boxes.
Try setup-webconf.
> loaded all I could ( acf* )> mini_httpd started> but all I could see was a page> with system health. :-(
You need to login. Default user is 'alpine' and password 'test123'.
> I've setup the .htpasswd file in some directory that I thought was > proper but never managed to login ( after hitting the login button ).
users/roles are found in /etc/acf/passwd
> > I've also found out that as soon as I issue> a> setup-alpine-web> > It starts doing all sorts of stuff reconfiguring the system setting up > interfaces and changing the system name. :-(> Please help !!
and starts dhcp and stuff so you can plug a laptop to a headless box and
get a welcome wizard. Unfortunally the wizard is not here.
setup-webconf
> Another issue is the number of packages that exist on the ISO images ....> and its really HUGE !!!!
you don need to install all of them
> I noticed that there is as script in the sdk to select a group of > packages and create an ISO image after downloading stuff from www.> But as I played a bit with it I noticed that wasn't functional and > started to download stuff from an old version.!
yeah. i am moving away from using gentoo to build the stuff.
> I most likely would like to avoid having gcc as well as other goodies > available on a production firewall-router. :-)
gcc might be handy if you want use the iso for a distcc host in your
compile cluster ;)
Easiest would be to copy the stuff you want to USB/CF. (or to a
directory to be burned on a new cd). copy the packages you want (or
remove those you dont want) and:
md5sum *.apk | gzip -c > INDEX.md5.gz
> > Cheers and Thanks.> Harry.>
thanks!
-nc
---
Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org
Help: alpine-devel+help@lists.alpinelinux.org
---