{"id":18956,"date":"2024-06-20T14:04:52","date_gmt":"2024-06-20T14:04:52","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/initial-access-to-ufispace\/"},"modified":"2024-06-20T14:04:52","modified_gmt":"2024-06-20T14:04:52","slug":"initial-access-to-ufispace","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/","title":{"rendered":"Initial access to Ufispace"},"content":{"rendered":"<p>Today we&#8217;re going to talk about how to perform initial access to UFISPACE devices with IP Infusion&#8217;s OcNOS operating system.<\/p>\n<p>The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a <strong>USB-to-RJ45 <\/strong>console adapter, <strong>as <\/strong>shown in the photo: <\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-074947.png\" alt=\"\"><\/figure>\n<p>With the cable in hand, connect the RJ45 side to the console port of the UFISPACE device, as shown in the example below:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075021.png\" alt=\"\"><\/figure>\n<p>With the physical connection between the computer and UFISPACE, we can then use software, such as teraterm, putty, among others to make the initial access.<\/p>\n<p>In this example, we&#8217;ll demonstrate how to do it using Putty.<\/p>\n<p>To do this, open PuTTY and enter the information as shown below:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075055.png\" alt=\"\"><\/figure>\n<p>In Serial line, enter the name of your computer&#8217;s COM interface. This can vary according to each device. <\/p>\n<p>Speed access to UFISPACE must be set to 115200.<\/p>\n<p>When you log in via the console, you&#8217;ll be taken to the username and password prompt screen, which by default displays the username \u201cocnos\u201d and password \u201cocnos\u201d:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075127.png\" alt=\"\"><\/figure>\n<p>After logging in via the console, the first recommendation is to change the ocnos user&#8217;s password to a stronger one. To do this, follow these steps:<\/p>\n<p>1 &#8211; Enter enable mode:<\/p>\n<pre><code>OcNOS&gt;enable<\/code><\/pre>\n<p>2 &#8211; Enter configuration mode:<\/p>\n<pre><code>OcNOS#configure terminal<\/code><\/pre>\n<p>3 &#8211; Change the user&#8217;s password and create a new user, as shown in the example:<\/p>\n<pre><code>OcNOS(config)#username ocnos password S3nh4-Super-F0rt3\nOcNOS(config)#username made4it password S3nh4-Super-F0rtissima\nOcNOS(config)#username made4it role network-admin<\/code><\/pre>\n<pre><code>4 \u2013 Alterar o nome do equipamento:\nhostname UFISPACE-01<\/code><\/pre>\n<p>5 &#8211; Apply the configuration:<\/p>\n<pre><code>OcNOS(config)#commit<\/code><\/pre>\n<p>6 &#8211; Finally, save the configuration:<\/p>\n<pre><code>OcNOS(config)#do write\nBuilding configuration\u2026\n[OK]<\/code><\/pre>\n<p>Now, let&#8217;s set up a management interface.<\/p>\n<p>By default, UFISPACE equipment comes with the &#8220;eth0&#8221; interface for use with out-of-band management.<\/p>\n<p>A good practice is to leave management only in a management VRF, with access controlled only through that VRF.<\/p>\n<p>To do this, follow these steps:<\/p>\n<p>1 &#8211; Accesses the eth0 interface:<\/p>\n<pre><code>OcNOS(config)#interface eth0<\/code><\/pre>\n<p>2 \u2013 Assign VRF management to the interface:<\/p>\n<pre><code>OcNOS(config-if)#ip vrf forwarding management<\/code><\/pre>\n<p>3 &#8211; Configures the management IP and interface description:<\/p>\n<pre><code>OcNOS(config-if)#ip address 10.10.0.2\/30\nOcNOS(config-if)#description GERENCIA<\/code><\/pre>\n<p>4 &#8211; Apply settings and save:<\/p>\n<pre><code>OcNOS(config)#commit\nOcNOS(config-if)#do write\nBuilding configuration\u2026\n[OK]<\/code><\/pre>\n<p>To validate the interface configuration, we can use the &#8220;show ip interface brief&#8221; command, as shown in the example:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075300.png\" alt=\"\"><\/figure>\n<p>If you are in configuration mode, use the command &#8220;do show ip interface brief&#8221;<\/p>\n<p>To configure the default route in the vrf, we use the following command:<\/p>\n<pre><code>OcNOS(config)#ip route vrf management 0.0.0.0\/0 10.10.0.1 eth0 description ROTA DEFAULT\nOcNOS(config)#commit<\/code><\/pre>\n<p>To validate the default route in the VRF, we can use the command:<\/p>\n<pre><code>OcNOS#show ip route vrf management<\/code><\/pre>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075327.png\" alt=\"\"><\/figure>\n<p>By default, ssh is already enabled in vrf management, if you want to disable it, use the command:<\/p>\n<pre><code>OcNOS(config)#no feature ssh vrf management<\/code><\/pre>\n<p>To enable SSH on vrf main, use the command:<\/p>\n<pre><code>OcNOS(config)#feature ssh\nOcNOS(config)#commit<\/code><\/pre>\n<p>Finally, it is important to set up ACLs to protect SSH access and only allow networks that can actually access the equipment.<\/p>\n<p>Let&#8217;s then configure the ACL that contains our admin networks, which in this case will be 10.10.0.0\/30 and 172.16.0.0\/24:<\/p>\n<pre><code>OcNOS(config)#ip access-list admin\nOcNOS(config-ip-acl)#10 permit tcp 10.10.0.0\/30 any eq ssh\nOcNOS(config-ip-acl)#20 permit tcp 172.16.0.0\/24 any eq ssh\nOcNOS(config-ip-acl)#65000 deny any any any\nOcNOS(config-ip-acl)#commit<\/code><\/pre>\n<p>Now we need to apply the ACL to line vty:<\/p>\n<pre><code>OcNOS(config)#line vty\nOcNOS(config-all-line)#ip access-group admin in\nOcNOS(config-all-line)#commit\nOcNOS(config-all-line)#do write\nBuilding configuration\u2026\n[OK]<\/code><\/pre>\n<p>Testing ssh access with a newly created user:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075413.png\" alt=\"\"><\/figure>\n<p>We can see that the access worked correctly.<\/p>\n<p>Now let&#8217;s test whether the ACL we created for protection is working.<\/p>\n<p>In this case, we&#8217;re going to use IP 172.20.0.1 as the source for accessing the device:<\/p>\n<p>We can see that ping works normally:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075443.png\" alt=\"\"><\/figure>\n<p>However, it does not give us SSH access, confirming that the ACL is working correctly:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075516.png\" alt=\"\"><\/figure>\n<p>Now let&#8217;s configure SNMP to monitor a system like Zabbix.<\/p>\n<p>To enable SNMP in vrf management, use the command:<\/p>\n<pre><code>UFISPACE-01(config)#snmp-server enable snmp vrf management\nUFISPACE-01(config)#snmp-server community made4it vrf management\nUFISPACE-01(config)#commit<\/code><\/pre>\n<p>If you use the vrf main to perform monitoring, simply use the following commands:<\/p>\n<pre><code>UFISPACE-01(config)#snmp-server enable snmp\nUFISPACE-01(config)#snmp-server community made4it-vrf-main\nUFISPACE-01(config)#commit<\/code><\/pre>\n<p>It is important that we keep the time of the device correct so that we can validate logs for troubleshooting with the correct local time. To do this, let&#8217;s configure NTP to update the date and time: <\/p>\n<pre><code>UFISPACE-01(config)#feature ntp vrf management\nUFISPACE-01(config)#ntp enable vrf management\nUFISPACE-01(config)#ntp server 200.160.7.186 vrf management\nUFISPACE-01(config)#commit<\/code><\/pre>\n<p>To check the NTP peers, we use the following command:<\/p>\n<pre><code>#show ntp peers \n----------------------------------------------------------- \nPeer IP Address Serv\/Peer \n----------------------------------------------------------- \n200.160.7.186 Server (configured) \n\u202f \n#show ntp peer-status \nTotal peers : 1 \n* - selected for sync, + - peer mode(active), \n- - peer mode(passive), = - polled in client mode \nremote refid st t when poll reach delay offset jitter \n============================================================================== \n* 200.160.7.186 LOCAL(0) 7 u 14 32 37 0.194 -4.870 3.314 <\/code><\/pre>\n<p>Now we have to correct the timezone so that the time is correct:<\/p>\n<pre><code>UFISPACE-01(config)#clock timezone Sao_Paulo \nUFISPACE-01(config)#commit <\/code><\/pre>\n<p>Another important feature is the possibility of using &#8220;commit confirmed&#8221; with timeout, to use in cases of configurations that may cause network downtime.<\/p>\n<p>Let&#8217;s do an example by changing the hostname and applying a commit confirmed timeout of 10 seconds:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075649.png\" alt=\"\"><\/figure>\n<p>If the commit is not confirmed, the configuration will revert to the previous configuration:<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075713.png\" alt=\"\"><\/figure>\n<p>To confirm the commit, we use the &#8220;confirm-commit&#8221; command.<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-075736.png\" alt=\"\"><\/figure>\n<p>Conclusion<\/p>\n<p>After completing the initial settings, the device will be ready to respond to SSH access via the network to the IPs authorized in the firewall and with the users configured. SNMP monitoring can also query the information using the Community created. If you have any questions about the initial configuration of UFISPACE, please contact us so that we can help you.  <\/p>\n<pre><code><\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Today we&#8217;re going to talk about how to perform initial access to UFISPACE devices with IP Infusion&#8217;s OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo: With the cable in hand, connect the RJ45 side to the console port of the UFISPACE device, as shown in the example below: With the physical connection between the computer and UFISPACE, we can then use software, such as teraterm, putty, among others to make the initial access. In this example, we&#8217;ll demonstrate how to do it using Putty. To do this, open PuTTY and enter the information as shown below: In Serial line, enter the name of your computer&#8217;s COM interface. This can vary according to each device. Speed access to UFISPACE must be set to 115200. When you log in via the console, you&#8217;ll be taken to the username and password prompt screen, which by default displays the username \u201cocnos\u201d and password \u201cocnos\u201d: After logging in via the console, the first recommendation is to change the ocnos user&#8217;s password to a stronger one. To do this, follow these steps: 1 &#8211; Enter enable mode: OcNOS&gt;enable 2 &#8211; Enter configuration mode: OcNOS#configure terminal 3 &#8211; Change the user&#8217;s password and create a new user, as shown in the example: OcNOS(config)#username ocnos password S3nh4-Super-F0rt3 OcNOS(config)#username made4it password S3nh4-Super-F0rtissima OcNOS(config)#username made4it role network-admin 4 \u2013 Alterar o nome do equipamento: hostname UFISPACE-01 5 &#8211; Apply the configuration: OcNOS(config)#commit 6 &#8211; Finally, save the configuration: OcNOS(config)#do write Building configuration\u2026 [OK] Now, let&#8217;s set up a management interface. By default, UFISPACE equipment comes with the &#8220;eth0&#8221; interface for use with out-of-band management. A good practice is to leave management only in a management VRF, with access controlled only through that VRF. To do this, follow these steps: 1 &#8211; Accesses the eth0 interface: OcNOS(config)#interface eth0 2 \u2013 Assign VRF management to the interface: OcNOS(config-if)#ip vrf forwarding management 3 &#8211; Configures the management IP and interface description: OcNOS(config-if)#ip address 10.10.0.2\/30 OcNOS(config-if)#description GERENCIA 4 &#8211; Apply settings and save: OcNOS(config)#commit OcNOS(config-if)#do write Building configuration\u2026 [OK] To validate the interface configuration, we can use the &#8220;show ip interface brief&#8221; command, as shown in the example: If you are in configuration mode, use the command &#8220;do show ip interface brief&#8221; To configure the default route in the vrf, we use the following command: OcNOS(config)#ip route vrf management 0.0.0.0\/0 10.10.0.1 eth0 description ROTA DEFAULT OcNOS(config)#commit To validate the default route in the VRF, we can use the command: OcNOS#show ip route vrf management By default, ssh is already enabled in vrf management, if you want to disable it, use the command: OcNOS(config)#no feature ssh vrf management To enable SSH on vrf main, use the command: OcNOS(config)#feature ssh OcNOS(config)#commit Finally, it is important to set up ACLs to protect SSH access and only allow networks that can actually access the equipment. Let&#8217;s then configure the ACL that contains our admin networks, which in this case will be 10.10.0.0\/30 and 172.16.0.0\/24: OcNOS(config)#ip access-list admin OcNOS(config-ip-acl)#10 permit tcp 10.10.0.0\/30 any eq ssh OcNOS(config-ip-acl)#20 permit tcp 172.16.0.0\/24 any eq ssh OcNOS(config-ip-acl)#65000 deny any any any OcNOS(config-ip-acl)#commit Now we need to apply the ACL to line vty: OcNOS(config)#line vty OcNOS(config-all-line)#ip access-group admin in OcNOS(config-all-line)#commit OcNOS(config-all-line)#do write Building configuration\u2026 [OK] Testing ssh access with a newly created user: We can see that the access worked correctly. Now let&#8217;s test whether the ACL we created for protection is working. In this case, we&#8217;re going to use IP 172.20.0.1 as the source for accessing the device: We can see that ping works normally: However, it does not give us SSH access, confirming that the ACL is working correctly: Now let&#8217;s configure SNMP to monitor a system like Zabbix. To enable SNMP in vrf management, use the command: UFISPACE-01(config)#snmp-server enable snmp vrf management UFISPACE-01(config)#snmp-server community made4it vrf management UFISPACE-01(config)#commit If you use the vrf main to perform monitoring, simply use the following commands: UFISPACE-01(config)#snmp-server enable snmp UFISPACE-01(config)#snmp-server community made4it-vrf-main UFISPACE-01(config)#commit It is important that we keep the time of the device correct so that we can validate logs for troubleshooting with the correct local time. To do this, let&#8217;s configure NTP to update the date and time: UFISPACE-01(config)#feature ntp vrf management UFISPACE-01(config)#ntp enable vrf management UFISPACE-01(config)#ntp server 200.160.7.186 vrf management UFISPACE-01(config)#commit To check the NTP peers, we use the following command: #show ntp peers &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Peer IP Address Serv\/Peer &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; 200.160.7.186 Server (configured) \u202f #show ntp peer-status Total peers : 1 * &#8211; selected for sync, + &#8211; peer mode(active), &#8211; &#8211; peer mode(passive), = &#8211; polled in client mode remote refid st t when poll reach delay offset jitter ============================================================================== * 200.160.7.186 LOCAL(0) 7 u 14 32 37 0.194 -4.870 3.314 Now we have to correct the timezone so that the time is correct: UFISPACE-01(config)#clock timezone Sao_Paulo UFISPACE-01(config)#commit Another important feature is the possibility of using &#8220;commit confirmed&#8221; with timeout, to use in cases of configurations that may cause network downtime. Let&#8217;s do an example by changing the hostname and applying a commit confirmed timeout of 10 seconds: If the commit is not confirmed, the configuration will revert to the previous configuration: To confirm the commit, we use the &#8220;confirm-commit&#8221; command. Conclusion After completing the initial settings, the device will be ready to respond to SSH access via the network to the IPs authorized in the firewall and with the users configured. SNMP monitoring can also query the information using the Community created. If you have any questions about the initial configuration of UFISPACE, please contact us so that we can help you.<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1390],"tags":[1388],"class_list":["post-18956","post","type-post","status-publish","format-standard","hentry","category-ufispace","tag-ufispace"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Today we&#039;re going to talk about how to perform initial access to UFISPACE devices with IP Infusion&#039;s OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Made4it\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Made4it -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Initial access to Ufispace - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"Today we&#039;re going to talk about how to perform initial access to UFISPACE devices with IP Infusion&#039;s OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"87\" \/>\n\t\t<meta property=\"og:image:height\" content=\"27\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-06-20T14:04:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-06-20T14:04:52+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Initial access to Ufispace - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Today we&#039;re going to talk about how to perform initial access to UFISPACE devices with IP Infusion&#039;s OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#blogposting\",\"name\":\"Initial access to Ufispace - Made4it\",\"headline\":\"Initial access to Ufispace\",\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/Captura-de-tela-2024-06-18-074947.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#articleImage\",\"width\":624,\"height\":533},\"datePublished\":\"2024-06-20T14:04:52+00:00\",\"dateModified\":\"2024-06-20T14:04:52+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#webpage\"},\"articleSection\":\"Ufispace, ufispace\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/ufispace\\\/#listItem\",\"name\":\"Ufispace\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/ufispace\\\/#listItem\",\"position\":2,\"name\":\"Ufispace\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/ufispace\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#listItem\",\"name\":\"Initial access to Ufispace\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#listItem\",\"position\":3,\"name\":\"Initial access to Ufispace\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/ufispace\\\/#listItem\",\"name\":\"Ufispace\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\",\"name\":\"Made4it\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/logomade4it.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/\",\"name\":\"Made4it\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Made4it\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/\",\"name\":\"Initial access to Ufispace - Made4it\",\"description\":\"Today we're going to talk about how to perform initial access to UFISPACE devices with IP Infusion's OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/initial-access-to-ufispace\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"datePublished\":\"2024-06-20T14:04:52+00:00\",\"dateModified\":\"2024-06-20T14:04:52+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"name\":\"Made4it\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Initial access to Ufispace - Made4it","description":"Today we're going to talk about how to perform initial access to UFISPACE devices with IP Infusion's OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#blogposting","name":"Initial access to Ufispace - Made4it","headline":"Initial access to Ufispace","author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2024\/06\/Captura-de-tela-2024-06-18-074947.png","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#articleImage","width":624,"height":533},"datePublished":"2024-06-20T14:04:52+00:00","dateModified":"2024-06-20T14:04:52+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#webpage"},"articleSection":"Ufispace, ufispace"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/made4it.com.br\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/#listItem","name":"Ufispace"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/#listItem","position":2,"name":"Ufispace","item":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#listItem","name":"Initial access to Ufispace"},"previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#listItem","position":3,"name":"Initial access to Ufispace","previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/#listItem","name":"Ufispace"}}]},{"@type":"Organization","@id":"https:\/\/made4it.com.br\/en\/#organization","name":"Made4it","url":"https:\/\/made4it.com.br\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author","url":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/","name":"Made4it","image":{"@type":"ImageObject","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g","width":96,"height":96,"caption":"Made4it"}},{"@type":"WebPage","@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/","name":"Initial access to Ufispace - Made4it","description":"Today we're going to talk about how to perform initial access to UFISPACE devices with IP Infusion's OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/#breadcrumblist"},"author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"creator":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"datePublished":"2024-06-20T14:04:52+00:00","dateModified":"2024-06-20T14:04:52+00:00"},{"@type":"WebSite","@id":"https:\/\/made4it.com.br\/en\/#website","url":"https:\/\/made4it.com.br\/en\/","name":"Made4it","inLanguage":"en-US","publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Made4it -","og:type":"article","og:title":"Initial access to Ufispace - Made4it","og:description":"Today we're going to talk about how to perform initial access to UFISPACE devices with IP Infusion's OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:","og:url":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/","og:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:secure_url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:width":87,"og:image:height":27,"article:published_time":"2024-06-20T14:04:52+00:00","article:modified_time":"2024-06-20T14:04:52+00:00","twitter:card":"summary_large_image","twitter:title":"Initial access to Ufispace - Made4it","twitter:description":"Today we're going to talk about how to perform initial access to UFISPACE devices with IP Infusion's OcNOS operating system. The first time you access the device, you must use a serial cable. Most computers today do not have a serial port, so you can use a USB-to-RJ45 console adapter, as shown in the photo:","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"18956","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-07-01 14:41:06","updated":"2026-07-01 14:41:06"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/\" title=\"Ufispace\">Ufispace<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tInitial access to Ufispace\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/made4it.com.br\/en\/"},{"label":"Ufispace","link":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/"},{"label":"Initial access to Ufispace","link":"https:\/\/made4it.com.br\/en\/blog\/initial-access-to-ufispace\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18956","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/comments?post=18956"}],"version-history":[{"count":0,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18956\/revisions"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=18956"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=18956"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=18956"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}