From Alexander.Stade@vattenfall.com Mon Sep 24 12:18:11 2012 Received: from mail24.vattenfall.de (mail24.vattenfall.de [193.111.59.75]) by underdog.stansell.org (8.14.5/8.14.5) with ESMTP id q8OCI3Ym008063 for ; Mon, 24 Sep 2012 12:18:10 GMT X-AuditID: c16f3b4a-b7f6e6d000005cd1-6f-50604f791076 From: To: Date: Mon, 24 Sep 2012 14:17:59 +0200 Subject: Cyclades ACS16 -- slightly off-topic Thread-Topic: Cyclades ACS16 -- slightly off-topic Thread-Index: Ac2aTqLhj4BNUPzSQ2O7831kgA4nSQ== Message-ID: Accept-Language: en-US, de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, de-DE MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9F9Fsmmabox1636eu_" X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFupjluLIzCtJLcpLzFFi42KJPsCnqFvpnxBg8Os9v0X757WsDowep363 swYwRnHZpKTmZJalFunbJXBlnDmzlLHgqnLFt8dz2RsY78h2MXJwSAiYSFz8YNnFyAlkiklc uLeeDcRmE1CTaJy1kxGkRERAUmJJlzBImEVAVWLDsbcsILawgK7E6/mrwMpFBIwkpkybwgxh 60n0HFvECmLzCsRIdF89D1bDKCAr0dnwjglilaDEotl7mGHW/tv1EKpGRuLVsw3MEL2CEidn PmEBOYFZoEBi9mS+CYz8s5BkZiFkQMLMAjoSC3Z/YoOwtSWWLXzNDGOfOfCYCVl8ASPbKkaR 3MTMHCMTvbLEkpLUvLTEnBy9lNRNjMAwPZhv7bWD8f15i0OM0hwsSuK8DyMjAoQE0hNLUrNT UwtSi+KLSnNSiw8xMnFwSjUwLv3WWqUoPNHzQ7lo1IY1G/TVS6tn3/fvZjt+fPbRHfsWV4ls 7VleeEXloCwrN/9l5m/8wjOmrM0oK3ecx8pTwPj0v81GBlZTvrsT9Ny63JlWB78Vdl2u7PR9 1ZrHknwf/36TuDc38MTkPgbvFz2nGpduPhmfN0VQt6P25IS/TSsNHq4wvGNUqcRSnJFoqMVc VJwIAACAOLQhAgAA X-Spam-Score: -1.499 () BAYES_00,HTML_MESSAGE X-Scanned-By: MIMEDefang 2.72 on 198.151.248.21 X-BeenThere: users@conserver.com X-Mailman-Version: 2.1.12 Precedence: list List-Id: Conserver Users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 12:18:11 -0000 --_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9F9Fsmmabox1636eu_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I have a Cyclades ACS16 in a lab environment and as luck would have it one = of the PSUs has died. The thing won't stop beeping. I've found that I can l= og on and kill off a process called ex_wtd_led.sh and cy_wtd_led. It seems = the ex_wtd_led.sh restarts cy_wtd_led, so its necessary to kill both. Of co= urse, if I kill it right in the middle of a "beep" the speaker gets locked = in that position and I have to reboot. I seem to have to time it right as w= ell. ex_wtd_led.sh: ---snip--- #!/bin/sh SED=3D/bin/sed CMD_ACS=3D"/usr/bin/nice --20 /bin/cy_wdt_led wdt led buzzer" CMD_KVM=3D"/usr/bin/nice --20 /bin/cy_wdt_led wdt led" # Make sure that we're on a KVM or Onsite PRODNAME=3D`set_nports 3` if [ "${PRODNAME:0:3}" =3D=3D "KVM" -o ${PRODNAME} =3D=3D "OnSite" ]; then CMD=3D$CMD_KVM else CMD=3D$CMD_ACS fi while true do $CMD sleep 1 done ---snip--- I would either like to do whatever it takes to make my ACS16 understand its= a single PSU system or mute the speaker. I won't spend money on it to get = it fixed, so I'm looking for a hack. Apparently I could alter the script to= exclude "buzzer", but since the root fs is a ramdisk, I'd have to somehow = edit the nvram or stored ramdisk. Interestingly it seems that the "set_npor= ts" command extracts how my ACS is configured (ports, PSUs etc) so perhaps = if I could convince that command that we're looking at a single PSU system = that I'd be home free. Any suggestions are welcome. Thanks in advance! -Alex --_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9F9Fsmmabox1636eu_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable
I have a Cyclades ACS16 in a lab environment and as luck would have it= one of the PSUs has died. The thing won't stop beeping. I've found that I = can log on and kill off a process called ex_wtd_led.sh and cy_wtd_led. It s= eems the ex_wtd_led.sh restarts cy_wtd_led, so its necessary to kill both. Of course, if I kill it right in= the middle of a "beep" the speaker gets locked in that position = and I have to reboot. I seem to have to time it right as well.
 
ex_wtd_led.sh:
---snip---
#!/bin/sh
 
SED=3D/bin/sed
CMD_ACS=3D"/usr/bin/nice --20 /bin/cy_wdt_led wdt led buzzer"= ;
CMD_KVM=3D"/usr/bin/nice --20 /bin/cy_wdt_led wdt led"
 
# Make sure that we're on a KVM or Onsite
PRODNAME=3D`set_nports 3`
if [ "${PRODNAME:0:3}" =3D=3D "KVM" -o ${PRODNAME}= =3D=3D "OnSite" ]; then
        CMD=3D$CMD_KVM
else
        CMD=3D$CMD_ACS
fi
 
while true
do
        $CMD
        sleep 1
done
---snip---
 
I would either like to do whatever it takes to make my ACS16 understan= d its a single PSU system or mute the speaker. I won't spend money on it to= get it fixed, so I'm looking for a hack. Apparently I could alter the scri= pt to exclude "buzzer", but since the root fs is a ramdisk, I'd have to somehow edit the nvram or stored ramd= isk. Interestingly it seems that the "set_nports" command extract= s how my ACS is configured (ports, PSUs etc) so perhaps if I could convince= that command that we're looking at a single PSU system that I'd be home free.
 
Any suggestions are welcome.
 
Thanks in advance!
 
-Alex
 
 
--_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9F9Fsmmabox1636eu_-- From Alexander.Stade@vattenfall.com Mon Sep 24 13:16:02 2012 Received: from mail23.vattenfall.de (mail23.vattenfall.de [193.111.59.73]) by underdog.stansell.org (8.14.5/8.14.5) with ESMTP id q8ODFtnU009961 for ; Mon, 24 Sep 2012 13:16:01 GMT X-AuditID: c16f3b48-b7ff26d000005cab-4c-50605d09c60e From: To: Date: Mon, 24 Sep 2012 15:15:51 +0200 Subject: Conserver on Cyclades ACS? Thread-Topic: Conserver on Cyclades ACS? Thread-Index: Ac2aVrhrp1nGmPMWS5yzWmPz8+aMyg== Message-ID: Accept-Language: en-US, de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, de-DE MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9FA1smmabox1636eu_" X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFupnluLIzCtJLcpLzFFi42KJPsCnossZmxBgcGWJrEX757WsDowep363 swYwRnHZpKTmZJalFunbJXBlrJk1nbVgKV/F7M/bmRsYf3F3MXJySAiYSDxffpQFwhaTuHBv PRuIzSagJtE4aydjFyMHh4iApMSSLmGQMIuAqsSns7PByoUFlCWevJ/MCGKLCGhInL52kB3C 1pN4duc32BhegRiJddM/gdUwCshKdDa8Y4JYJSixaPYeZpi1/3Y9ZIOokZF49WwDM0SvoMTJ mU9YQE5gFiiQmNKpOoGRfxaSzCyEDEiYWUBHYsHuT2wQtrbEsoWvmWHsMwceMyGLL2BkW8Uo kpuYmWNkrFeWWFKSmpeWmJOjl5K6iREYqAfzrT12ML44b3GIUZqDRUmc92FkRICQQHpiSWp2 ampBalF8UWlOavEhRiYOTqkGxoAFO7M83syOD9J6eWDhT16X5MLjpXn9Xe2/Hudu8OnifsNU qWyzd7LCYpZDnkvUywwe93MclNh1m73uRqt2e/lyo4KJdzT33+S6X6Pz4dS9PPk4DRvxW2Is mh8tojQt9h0K/XHixISLC2dvNe1bzmHJLLFebnfX1nS/DXZrp62UeBa8S+7uYiWW4oxEQy3m ouJEAErBlZAiAgAA X-Spam-Score: -1.499 () BAYES_00,HTML_MESSAGE X-Scanned-By: MIMEDefang 2.72 on 198.151.248.21 X-BeenThere: users@conserver.com X-Mailman-Version: 2.1.12 Precedence: list List-Id: Conserver Users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 13:16:02 -0000 --_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9FA1smmabox1636eu_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I know there are several bits of information out there on how to configure = a conserver to look up a Cyclades ACS, but I'm wondering since the ACS is i= ndeed a Linux box, wouldn't it be possible to build a PPC version of conser= ver that would work on the ACS? If so, has anyone done it? If not, I'm thin= king of trying a cross-compile, but from what I've gathered so far its a bi= t messy to get it going. It would be silly to reinvent the wheel. Sincerely, -Alex --_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9FA1smmabox1636eu_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable
I know there are several bits of information out there on how to confi= gure a conserver to look up a Cyclades ACS, but I'm wondering since the ACS= is indeed a Linux box, wouldn't it be possible to build a PPC version of c= onserver that would work on the ACS? If so, has anyone done it? If not, I'm thinking of trying a cross-comp= ile, but from what I've gathered so far its a bit messy to get it going. It= would be silly to reinvent the wheel.
 
Sincerely,
 
-Alex
 
--_000_D5E34572D6CB8C40ABFA52F33CCB228A0B9D1D9FA1smmabox1636eu_-- From consoleteam@gmail.com Mon Sep 24 16:00:08 2012 Received: from mail-ob0-f178.google.com (mail-ob0-f178.google.com [209.85.214.178]) by underdog.stansell.org (8.14.5/8.14.5) with ESMTP id q8OG01Ks014487 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=OK) for ; Mon, 24 Sep 2012 16:00:07 GMT Received: by obbwd20 with SMTP id wd20so6009307obb.9 for ; Mon, 24 Sep 2012 09:00:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Af5cY3v6lH0pA8B/oh+6u8DkVzrxCcVeyAMg7xIph7I=; b=JKH59KGqmoPbenSxwMzHINjasGKn1/9LPmX5CG+pVPJQTczsqAX7vjG5pVzGqShITm Wa8prOIN/XNTuvMervNw9BEZTwzCLJx34u4nTW817Gv0CtC0pUd+Q29dyfhBTDMx68WS em2pkWeQw7nndRDWDNtiqiXzQG/Vi8JYsVbVROTvWCJqa6OjR2VW8QBz7d04hel3NvRt JTw8so3OfvN1Vo909ZEhpQi6G6MEzo/A2CntriWuORv4X5iO5e3s/ZhSaKhRI2P+4Oxl vWU8T45PbMwja2O8MOsHXDXjgQ+PRNu+Ij6CAmsyQBXpXcik6cBkRSREwws5fvmU93y2 y6fg== MIME-Version: 1.0 Received: by 10.60.0.169 with SMTP id 9mr10333309oef.94.1348502400160; Mon, 24 Sep 2012 09:00:00 -0700 (PDT) Received: by 10.182.98.196 with HTTP; Mon, 24 Sep 2012 09:00:00 -0700 (PDT) In-Reply-To: References: Date: Mon, 24 Sep 2012 09:00:00 -0700 Message-ID: Subject: Re: Conserver on Cyclades ACS? From: Zonker To: Alexander.Stade@vattenfall.com Content-Type: multipart/alternative; boundary=e89a8ff252fa8a527f04ca74aee3 X-Spam-Score: -1.488 () BAYES_00,FREEMAIL_FROM,HTML_MESSAGE,T_DKIM_INVALID X-Scanned-By: MIMEDefang 2.72 on 198.151.248.21 Cc: users@conserver.com X-BeenThere: users@conserver.com X-Mailman-Version: 2.1.12 Precedence: list List-Id: Conserver Users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 16:00:08 -0000 --e89a8ff252fa8a527f04ca74aee3 Content-Type: text/plain; charset=ISO-8859-1 It can be (has been) done, but it's not an optimal solution, mainly due to insufficient on-board storage. You can try to write log messages out to a syslog host, but that defeats the "all in a box" idea. You would be relying on your network to get UDP traffic through intact (is it on a separate management network?) For an ACS-16, you may not have a lot of log traffic, and you might be able to get away with storing data overnight, or over weekends, and using cron to ship the data elsewhere for longer-term storage (for forensic data, etc.). If you are evaluating the logs, and acting on them in real-time, then you usually have your log parser also on the Conserver host, which is eating more RAM on the ACS. The ACS was much better than the TS line. Using one as a conserver itself is a challenge. Best regards, -Z- On Mon, Sep 24, 2012 at 6:15 AM, wrote: > I know there are several bits of information out there on how to > configure a conserver to look up a Cyclades ACS, but I'm wondering since > the ACS is indeed a Linux box, wouldn't it be possible to build a PPC > version of conserver that would work on the ACS? If so, has anyone done it? > If not, I'm thinking of trying a cross-compile, but from what I've gathered > so far its a bit messy to get it going. It would be silly to reinvent the > wheel. > > Sincerely, > > -Alex > > > _______________________________________________ > users mailing list > users@conserver.com > https://www.conserver.com/mailman/listinfo/users > > -- ConsoleTeam - Support and training services for Conserver users. www.conserver.com/consoles/ consoleteam.blogspot.com - - - - - - - - www.ncry.org www.d4tm.org www.hackerdojo.com --e89a8ff252fa8a527f04ca74aee3 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable It can be (has been) done, but it's not an optimal solution, mainly due= to insufficient on-board storage. You can try to write log messages out to= a syslog host, but that defeats the "all in a box" idea. You wou= ld be relying on your network to get UDP traffic through intact (is it on a= separate management network?)

For an ACS-16, you may not have a lot of log traffic, and yo= u might be able to get away with storing data overnight, or over weekends, = and using cron to ship the data elsewhere for longer-term storage (for fore= nsic data, etc.).

If you are evaluating the logs, and acting on them in real-t= ime, then you usually have your log parser also on the Conserver host, whic= h is eating more RAM on the ACS.

The ACS was much = better than the TS line. Using one as a conserver itself is a challenge.=A0=

=A0 =A0 Best regards,

=A0= =A0 =A0 =A0-Z-

On Mon, Sep 24, 2012 at 6= :15 AM, <Alexander.Stade@vattenfall.com> wrote= :
I know there are several bits of information out there on how to confi= gure a conserver to look up a Cyclades ACS, but I'm wondering since the= ACS is indeed a Linux box, wouldn't it be possible to build a PPC vers= ion of conserver that would work on the ACS? If so, has anyone done it? If not, I'm thinking of trying a cross-= compile, but from what I've gathered so far its a bit messy to get it g= oing. It would be silly to reinvent the wheel.
=A0
Sincerely,
=A0
-Alex
=A0

_______________________________________________
users mailing list
users@conserver.com
https://www.conserver.com/mailman/listinfo/users




--
ConsoleT= eam - Support and training services for Conserver users.
www.conserver.com/console= s/
consoleteam.b= logspot.com
- - - - - - - -
www.ncry.org
www.d4tm.org
www.hackerdojo.com<= /a>
--e89a8ff252fa8a527f04ca74aee3-- From Alexander.Stade@vattenfall.com Mon Sep 24 17:59:46 2012 Received: from mail22.vattenfall.de (mail22.vattenfall.de [193.111.59.71]) by underdog.stansell.org (8.14.5/8.14.5) with ESMTP id q8OHxd2S018178 for ; Mon, 24 Sep 2012 17:59:46 GMT X-AuditID: c16f3b46-b7fc26d000005e16-b3-50609f889f17 From: To: Date: Mon, 24 Sep 2012 19:59:33 +0200 Subject: Re: Conserver on Cyclades ACS? Thread-Topic: Conserver on Cyclades ACS? Thread-Index: Ac2aflobK//epy8kRLWtKow68Zmm0g== Message-ID: <02CF7E71-4567-48DD-A6A4-D402306F892D@vattenfall.com> References: In-Reply-To: Accept-Language: en-US, de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, de-DE MIME-Version: 1.0 Content-Language: en-US Content-Type: text/plain; charset="utf-8" X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFtrHLMWRmVeSWpSXmKPExsUSfYBPRbdjfkKAwYFfChZr33QzW7R/Xsvq wORx6nc7q8fOWXfZA5iiuGxSUnMyy1KL9O0SuDI2NLWwFLyTrHg57wJjA+MMyS5GTg4JAROJ ruvT2CBsMYkL99aD2WwCahKNs3YygtgiAtISS+7OBIszC0hKNPx+DRZnEVCVuPVgDhOILSyg LrH26ySoeg2J09cOskPYehLfT10BquHg4BVwlLh6tKyLkYtDSGAxo0TP29OsIDWcAoES235/ ZQGxGQVkJTob3jFB3CMosWj2HmaY2/7tesgGUSMj8erZBrA4L1DNyZlPWCBuE5e49WQ+2C5m AU2J9bv0IcKKElO6H7JPYBSZhaRjFpKOWQgds5B0LGBkWcUokpuYmWNkpFeWWFKSmpeWmJOj l5K6iREYBwfzrd12MD46b3GIUZqDRUmc92FkRICQQHpiSWp2ampBalF8UWlOavEhRiYOTqkG xtXi660O3Yhh5t2RrTtp3df1XRse9v8xO7pyB6/7Yy2bxRot77KMgv/dslyT3Rfe8GLX4Y5n 7zgXiJy4vlzbnW/tn/nJFb1zf2np/1LM/nIjVlxJ/vR3lhOShoVJq7RSzEKYsjPbsn5JbOIV uVtw0ShaikubWf5dV/6NXbyqdlMTGKP1zlh/VWIpzkg01GIuKk4EAMVEESJRAgAA X-Spam-Score: -1.5 () BAYES_00 X-Scanned-By: MIMEDefang 2.72 on 198.151.248.21 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by underdog.stansell.org id q8OHxd2S018178 Cc: users@conserver.com X-BeenThere: users@conserver.com X-Mailman-Version: 2.1.12 Precedence: list List-Id: Conserver Users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 17:59:46 -0000 Thanks for your input. I'd mostly be interested in running conserver on the ACS so that I could get the sweet console program to work instead of that horrible ts_menu thing. Logs are of secondary importance for this particular setup. Telnet is a non-starter for me and SSH typically means about 347 "~"'s before I can tell the terminal what I want. ;) Sent from my iPhone On Sep 24, 2012, at 6:00 PM, "Zonker" > wrote: It can be (has been) done, but it's not an optimal solution, mainly due to insufficient on-board storage. You can try to write log messages out to a syslog host, but that defeats the "all in a box" idea. You would be relying on your network to get UDP traffic through intact (is it on a separate management network?) For an ACS-16, you may not have a lot of log traffic, and you might be able to get away with storing data overnight, or over weekends, and using cron to ship the data elsewhere for longer-term storage (for forensic data, etc.). If you are evaluating the logs, and acting on them in real-time, then you usually have your log parser also on the Conserver host, which is eating more RAM on the ACS. The ACS was much better than the TS line. Using one as a conserver itself is a challenge. Best regards, -Z- On Mon, Sep 24, 2012 at 6:15 AM, > wrote: I know there are several bits of information out there on how to configure a conserver to look up a Cyclades ACS, but I'm wondering since the ACS is indeed a Linux box, wouldn't it be possible to build a PPC version of conserver that would work on the ACS? If so, has anyone done it? If not, I'm thinking of trying a cross-compile, but from what I've gathered so far its a bit messy to get it going. It would be silly to reinvent the wheel. Sincerely, -Alex _______________________________________________ users mailing list users@conserver.com https://www.conserver.com/mailman/listinfo/users -- ConsoleTeam - Support and training services for Conserver users. www.conserver.com/consoles/ consoleteam.blogspot.com - - - - - - - - www.ncry.org www.d4tm.org www.hackerdojo.com From michael@riceclan.org Mon Sep 24 18:40:43 2012 Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by underdog.stansell.org (8.14.5/8.14.5) with ESMTP id q8OIebwb019723 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=OK) for ; Mon, 24 Sep 2012 18:40:43 GMT Received: by pbcmd12 with SMTP id md12so12265402pbc.9 for ; Mon, 24 Sep 2012 11:40:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:date:message-id:subject:from:to :content-type:x-gm-message-state; bh=BLpnt1Le4QCnm9xD3IX/efaAtiLgMHvatYmta6Li0cI=; b=pDNcu/Hplx/pa+mvPhsXN+GtTBGr/QI/0IKwiSlP4lecNnZ3CgSOEtDe3BrgH6hHn/ sQivj4xnW1DTpplxXTIRx5syhtk6ML8n9QD8WfLnbCWa85wl9+SiCd1hFXC6RTSWRsnP kTm0MtboRzfcst3njxxPrGOq0bQ6sAjFe2/lKn4Zg3YC4B+lqSKnOOntjl71Pj7I7hun /WrsjDVmPKUCY6bbKzLD9BkOM8/uOkcGkMaTvHxPHGWTiTH8F3XuY4JCyj/195oAEpfe qeKAGUCeIjTjLeu3xdzBeXpcpT/PImeOhLgrh51YFmvYUoIA9gsxEYdq3UI9t5Cx5DSU iTSA== MIME-Version: 1.0 Received: by 10.68.232.70 with SMTP id tm6mr39193867pbc.104.1348512034990; Mon, 24 Sep 2012 11:40:34 -0700 (PDT) Received: by 10.68.47.129 with HTTP; Mon, 24 Sep 2012 11:40:34 -0700 (PDT) X-Originating-IP: [72.48.121.251] Date: Mon, 24 Sep 2012 13:40:34 -0500 Message-ID: Subject: Re: How to connect to Cyclades ACS6000 From: Michael Rice To: users@conserver.com Content-Type: multipart/alternative; boundary=047d7b33d936d22b7f04ca76eccc X-Gm-Message-State: ALoCoQlJVbXgq6ATXXiUjhq/0CcRA2Ce8Yz8KSJFn6v9AYaf1PYdC2UthhI51yvhrK7XnVdZKyLP X-Spam-Score: -1.499 () BAYES_00,HTML_MESSAGE X-Scanned-By: MIMEDefang 2.72 on 198.151.248.21 X-BeenThere: users@conserver.com X-Mailman-Version: 2.1.12 Precedence: list List-Id: Conserver Users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2012 18:40:43 -0000 --047d7b33d936d22b7f04ca76eccc Content-Type: text/plain; charset=ISO-8859-1 On *Thu, 30 Aug 2012 02:24:43 GMT *esx20110328@163.com said: > I mean in the same configuration file, Cyclades ACS5000 works well, but Cyclades ACS6000 not works. I've chased this down as I have my first ACS6000 as well. This device is different from ones in the past, adding some features which apparently interfere with conserver. The resolution I found was to make sure the ACS6000 ports are in 'raw' mode. Under CAS Settings (per port), change Protocol to 'Telnet/Raw Mode' (or just Raw Mode, or Telnet/SSH/Raw Mode -- we'll only be using the raw ports for conserver) and fill in the port for 'Raw Mode Port Alias'. Configure conserver as usual but make sure to use the raw mode ports (I put 7000 series ports on raw and added 8000 series ports for telnet and 9000 series ports for ssh). you can do this in bulk by using the checkboxes and the 'Set CAS' button. Once i configured the raw ports, conserver works as usual. --047d7b33d936d22b7f04ca76eccc Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable > I mean in the same c= onfiguration file, Cyclades ACS5000 works well, but Cyclades ACS6000 not wo= rks.

I've chased this down as I have my first ACS6000 as well= . =A0This device is different from ones in the past, adding some features w= hich apparently interfere with conserver.

The resolution I fo= und was to make sure the ACS6000 ports are in 'raw' mode. =A0

Under CAS Settings (per port), change Protocol to '= Telnet/Raw Mode' (or just Raw Mode, or Telnet/SSH/Raw Mode -- we'll= only be using the raw ports for conserver) and fill in the port for 'R= aw Mode Port Alias'. =A0 Configure conserver as usual but make sure to = use the raw mode ports (I put 7000 series ports on raw and added 8000 serie= s ports for telnet and 9000 series ports for ssh). =A0you can do this in bu= lk by using the checkboxes and the 'Set CAS' button.

Once i configured the raw ports, conserver works as usu= al.
--047d7b33d936d22b7f04ca76eccc-- From Alexander.Stade@vattenfall.com Tue Sep 25 14:02:46 2012 Received: from mail26.vattenfall.de (mail27.vattenfall.de [91.192.14.22]) by underdog.stansell.org (8.14.5/8.14.5) with ESMTP id q8PE2cs5018225 for ; Tue, 25 Sep 2012 14:02:45 GMT X-AuditID: 5bc00e0c-b7f066d000000d85-b1-5061b97afb11 Received: from smgatex2971.corp.vattenfall.com (Unknown_Domain [91.192.14.42]) by mail26.vattenfall.de (Vattenfall Outbound Gateway) with SMTP id 34.EB.03461.A79B1605; Tue, 25 Sep 2012 16:02:34 +0200 (CEST) From: To: Date: Tue, 25 Sep 2012 16:01:18 +0200 Subject: RE: Conserver on Cyclades ACS? Thread-Topic: Conserver on Cyclades ACS? Thread-Index: Ac2abaioI3DQv8B1Q126xj1Ew5Qi+AAuJOEj Message-ID: References: , In-Reply-To: Accept-Language: en-US, de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, de-DE MIME-Version: 1.0 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrDLMWRmVeSWpSXmKPExsUSfYBPS7dqZ2KAwbs2Y4u1b7qZLdo/r2V1 YPI49bud1WPnrLvsAUxRXDYpqTmZZalF+nYJXBmbr9xgLDgoVLF4+n+mBsYW/i5GDg4JAROJ ltUZXYycQKaYxIV769m6GLk4hAQuMEp8PtDPDJJgE1CTaJy1kxHEFhGQllhydyYbiM0sICnR 8Ps1I8gcFgFViZkvlEHCwgLqEq13n0OVa0icvnaQHcI2kmiYu5MVxOYViJHofL8YatdCRonD MxeANXAKBEps+/2VBcRmFJCV6Gx4xwRxnKDEotl7mGEO/bfrIRtEjYzEq2cbmCGGCkqcnPmE BeI2cYlbT+YzQdg6Egt2f4K6WVti2cLXzBMYRWchaZmFpGUWkpZZSFoWMLKsYhTJTczMMTLX K0ssKUnNS0vMydFLSd3ECIkRnh2Mc6dZHmKU5mBREud9FBkRICSQnliSmp2aWpBaFF9UmpNa fIiRiYNTqoFR3z8krrP8P3vc0T0zO6oXnHRgu5fY2BIsXWjs0hLZfOHOHPbqT4JiYh/FPzzP 0nvJcy+n7uTMvaf3yG9YWqFqnNG930VxWcq/+9bRpevvmM+4+HR3aETnzr1RXmWSGZOuH3iV u0d42fdd7+1clixMOjq1MfsV5w6j7FUvez6ujal8evSUw6MWJZbijERDLeai4kQAdBCCdF8C AAA= X-Spam-Score: -1.5 () BAYES_00 X-Scanned-By: MIMEDefang 2.72 on 198.151.248.21 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by underdog.stansell.org id q8PE2cs5018225 Cc: users@conserver.com X-BeenThere: users@conserver.com X-Mailman-Version: 2.1.12 Precedence: list List-Id: Conserver Users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2012 14:02:46 -0000 I re-read your e-mail and saw that you're suggesting that a port of conserver to ACS has been done. Do you have any notes or info on this? Sincerely, -Alex ________________________________________ From: Zonker [consoleteam@gmail.com] Sent: Monday, September 24, 2012 6:00 PM To: Stade Alexander (FICIH) Cc: users@conserver.com Subject: Re: Conserver on Cyclades ACS? It can be (has been) done, but it's not an optimal solution, mainly due to insufficient on-board storage. You can try to write log messages out to a syslog host, but that defeats the "all in a box" idea. You would be relying on your network to get UDP traffic through intact (is it on a separate management network?) For an ACS-16, you may not have a lot of log traffic, and you might be able to get away with storing data overnight, or over weekends, and using cron to ship the data elsewhere for longer-term storage (for forensic data, etc.). If you are evaluating the logs, and acting on them in real-time, then you usually have your log parser also on the Conserver host, which is eating more RAM on the ACS. The ACS was much better than the TS line. Using one as a conserver itself is a challenge. Best regards, -Z- On Mon, Sep 24, 2012 at 6:15 AM, > wrote: I know there are several bits of information out there on how to configure a conserver to look up a Cyclades ACS, but I'm wondering since the ACS is indeed a Linux box, wouldn't it be possible to build a PPC version of conserver that would work on the ACS? If so, has anyone done it? If not, I'm thinking of trying a cross-compile, but from what I've gathered so far its a bit messy to get it going. It would be silly to reinvent the wheel. Sincerely, -Alex _______________________________________________ users mailing list users@conserver.com https://www.conserver.com/mailman/listinfo/users -- ConsoleTeam - Support and training services for Conserver users. www.conserver.com/consoles/ consoleteam.blogspot.com - - - - - - - - www.ncry.org www.d4tm.org www.hackerdojo.com