Mark

Results 8 issues of Mark

For convenience, I made 2 scripts for managing the node for systemd: for registration and deletion. As a result you will be able to launch the node via `service tonnode...

enhancement

### I have checked the following: - [X] I use the newest version of bruno. - [X] I've searched existing issues and found nothing related to my issue. ### Describe...

bug

### Welcome! - [x] Yes, I've searched similar issues on [GitHub](https://github.com/traefik/traefik/issues) and didn't find any. - [x] Yes, I've searched similar issues on the [Traefik community forum](https://community.traefik.io) and didn't find...

kind/proposal
area/middleware

Hi, on server Gigabyte R163-Z30-AAB2-000 this code: ``` import logging logging.basicConfig(level=logging.DEBUG) interface = create_interface( 'rmcp', keep_alive_interval=0 ) ipmi: Ipmi = create_connection(interface) ipmi.session.set_session_type_rmcp(host=ipmi_addr, port=623) ipmi.session.set_auth_type_user(username=ipmi_login, password=ipmi_passw) ipmi.target = Target() ipmi.session.establish() print(ipmi.get_chassis_status())...

``` import logging logging.basicConfig(level=logging.DEBUG) interface = pyipmi.interfaces.create_interface('ipmitool', interface_type='lan') connection = pyipmi.create_connection(interface) connection.target = pyipmi.Target(0x82) connection.target.set_routing([(0x81,0x20,0),(0x20,0x82,7)]) connection.session.set_session_type_rmcp(ipmi_addr, port=623) connection.session.set_auth_type_user(ipmi_login, ipmi_passw) connection.session.set_priv_level("ADMINISTRATOR") connection.session.establish() connection.get_device_id() ``` ``` DEBUG:pyipmi:IPMI Request [GetDeviceIdReq [netfn=6, cmd=1, grp=None]]...

``` Traceback (most recent call last): File "C:\Users\mark\PycharmProjects\test\ipmi_fetch_info.py", line 16, in ipmi.inventory_device() File "C:\Users\mark\PycharmProjects\test\ipmi.py", line 104, in inventory_device self.data['fru'] = self._decode_fru(self._session.get_fru_inventory(), device_id) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Users\mark\PycharmProjects\test\.venv\Lib\site-packages\pyipmi\fru.py", line 156, in get_fru_inventory fru.product_info_area...