Как очистить Журнал Системного события DMI от Linux?

Я никогда не использовал RRAS, таким образом, мой ответ будет немного универсален, извините.

Я немного неясен относительно ли "никакой отдых сети любой" предназначенный 10.255.6.x или 192.168.88.x. Очевидно, если машины в 192.168.88.0/24 сеть не может общаться друг с другом, это - первая вещь, которой Вы захотите заняться, с тех пор они не могут получить доступ к самому серверу RRAS.

Возможно, Вы могли описать, какие выборы Вы сделали в мастере RRAS, а также произведите вывод следующих команд от одного клиента и сервера RRAS:

ping 192.168.88.1
ipconfig /all
route print
nslookup www.google.com
tracert -d 10.255.6.61
tracert -d www.google.com
arp -a
6
задан 1 September 2011 в 16:40
1 ответ

SEL (System Event Log) can be cleared from Linux. Depending on which interfaces you have available will determine how it can be done.

My supermirco workstation as well as most servers have IPMI. You can check if your system registered an IPMI device with dmidecode.

dmidecode --type 38

Failure to query the interface, does not necessarily mean your system lacks an IPMI interface. Just a quick way to verify if it definitely does.

To use IPMI, install openipmi. You will have to start the service first, which is named differently distro to distro.

to clear, run (w/ su/sudo)

$ ipmitool sel clear

If openipmi does not work, you can also try freeipmi. I have heard freeipmi is very solid and has a really good direct (driverless) KCS or SSIF interface.

once you installed freeipmi, make sure to load i2c-dev and i2c-core with modprobe. You will also need to load your chipset dependant i2c-#DRIVER. For example, i2c-viapro or i2c-i810.

Once you load those modules, try running,

$ ipmi-locate

FreeIPMI, has the command ipmi-sel. Which, in addition to other options, would be run with --clear.

If you are running from a PC that does not support either open or free ipmi, I'm not exactly sure where to go from there.

5
ответ дан 3 December 2019 в 00:33

Теги

Похожие вопросы