У нас вы можете посмотреть бесплатно Simple Network Management Protocol (SNMP) - 9 : SNMP Operation или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Let's demonstrate how SNMP works this way. Here we have a network management station, the SNMP server, and a few switches, which are the SNMP clients. We will use SNMP to manage the switches. In the first example, we want to retrieve information from Switch A about how many packets have passed through a specific port. First, we send a GET request with the MIB identifier for the information we need. Let's assume the request is GET 1.3.6.1.800.4.5.6. This request goes to the switch and accesses the specific file of information. The SNMP client then returns a GET REPLY with a value of 13,678. This value means that 13,678 packets have passed through the port in question. Now we will try a SET Command. In this case we want to disable a port. This is a little more complex than the last scenario. Before we start, we need to identify some values. 1.3.6.1.800.5 is the port in question. 1.3.6.1.800.5.0 means the port is disabled. This is indicated by the value of "0" at the end of the identifier. 1.3.6.1.800.5.1 means the port is enabled. This is indicated by the value of "1" at the end of the identifier. Okay, now we can start. First we send a GET to determine the status of the port. The command is "GET 1.3.6.1.800.4.5." In this case, we receive a GET REPLY of 1.3.6.1.800.4.5.1, which tells us the port is active. We then send a SET 1.3.6.1.800.4.5.0 to the switch to disable the port. Then, we send another GET 1.3.6.1.800.4.5 to check the status of the port, and receive a GET REPLY 1.3.6.1.800.4.5.0, telling us the port is disabled, and the SET command was successful.