{"id":19027,"date":"2023-12-26T09:47:25","date_gmt":"2023-12-26T09:47:25","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/how-to-configure-netflow-on-nokia-routers\/"},"modified":"2026-07-01T15:11:41","modified_gmt":"2026-07-01T15:11:41","slug":"how-to-configure-netflow-on-nokia-routers","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/","title":{"rendered":"How to Configure NetFlow on Nokia Routers"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Hello<\/p>\n\n<p class=\"wp-block-paragraph\">Today we&#8217;ll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream).<\/p>\n\n<p class=\"wp-block-paragraph\">Here we have the Network topology and the Netflow Server information<\/p>\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2023\/12\/1a.png\" alt=\"\" class=\"wp-image-13199\"\/><\/figure>\n\n<p class=\"wp-block-paragraph\">These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream<\/p>\n\n<p class=\"wp-block-paragraph\">1 &#8211; Configure the NTP server<br\/>2 &#8211; Configure the cflowd parameters with the NetFlow server<br\/>3 &#8211; Configure the interface to enable NetFlow<\/p>\n\n<p class=\"wp-block-paragraph\">Let&#8217;s go through the setup step by step:<\/p>\n\n<h3 class=\"wp-block-heading\">1.Configuring the NTP Server<\/h3>\n\n<p class=\"wp-block-paragraph\">It is important to configure an NTP server because flow data uses timestamps based on the router&#8217;s time. If the router&#8217;s time differs from that of the server, the data will not be time-stamped correctly, resulting in a discrepancy in the information.<\/p>\n\n<p class=\"wp-block-paragraph\">It is important that you configure at least 2 NTP servers and also your router&#8217;s timezone.<\/p>\n\n<pre class=\"wp-block-code\"><code>system time ntp no shutdown<br>system time zone BRT -03<br>system time ntp server 200.160.7.186<br>system time ntp server 201.49.148.135<\/code><\/pre>\n\n<h3 class=\"wp-block-heading\">2 &#8211; Configure the cflowd parameters with the NetFlow server<\/h3>\n\n<pre class=\"wp-block-code\"><code>system security source-address application cflowd 192.168.210.49<br>cflowd<br>admin-state enable<br>active-flow-timeout 60<br>inactive-flow-timeout 15<br>cache-size 102400<br>overflow 10<br>template-retransmit 60<br>sample-profile 1 sample-rate 500<br>collector 192.168.210.47:2055 version 9<br>description \"Made4Flow\"<br>router-instance \"Base\"<br>template-set basic<\/code><\/pre>\n\n<h3 class=\"wp-block-heading\">3- Configure the interface to enable NetFlow<\/h3>\n\n<p class=\"wp-block-paragraph\">Finally, we need to enable NetFlow on the interfaces that will export it. To do this, use the following commands on each interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>cflowd-parameters sampling unicast type interface direction ingress sample-profile 1<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Below is the complete configuration of the Router:<\/p>\n\n<pre class=\"wp-block-code\"><code>system time ntp no shutdown\nsystem time zone BRT -03\nsystem time ntp server 200.160.7.186\nsystem time ntp server 201.49.148.135\n\nsystem security source-address application cflowd 192.168.210.49\n\ncflowd\nadmin-state enable\nactive-flow-timeout 60\ninactive-flow-timeout 15\ncache-size 102400\noverflow 10\ntemplate-retransmit 60\nsample-profile 1 sample-rate 500\ncollector 192.168.210.47:2055 version 9\ndescription \"Made4Flow\"\nrouter-instance \"Base\"\ntemplate-set basic<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>And enable the following on all interfaces<\/strong>:<\/p>\n\n<pre class=\"wp-block-code\"><code>cflowd-parameters sampling unicast type interface direction ingress sample-profile 1<\/code><\/pre>\n\n<h3 class=\"wp-block-heading\">Detailed description<\/h3>\n\n<ul class=\"wp-block-list\">\n<li><strong>active-flow-timeout (default 1800s)<\/strong> = Time interval, in seconds, for exporting active sessions; be sure to set this value the same on both the server and the router<\/li>\n\n\n\n<li><strong>inactive-flow-timeout (default 15s)<\/strong> = The time interval, in seconds, during which no packets pass through the flow before it is considered inactive.<\/li>\n\n\n\n<li><strong>cache-size (default 65536) = <\/strong> Maximum number of active flows in the flow cache table; adjust this value according to your needs and the device&#8217;s capacity.<\/li>\n\n\n\n<li><strong>overflow (default 1%) = <\/strong> Percentage of entries to be removed from the Cflowd cache when the maximum number of entries is exceeded<\/li>\n\n\n\n<li><strong>template-retransmit (default 600s)<\/strong> = Time interval for resending the flow template information<\/li>\n\n\n\n<li><strong>sample-rate (default 1000)<\/strong> = Set this value to match the collection system to prevent discrepancies in traffic calculations<\/li>\n\n\n\n<li><strong>collector<\/strong> = destination server<\/li>\n\n\n\n<li><strong>version<\/strong> = Use 9 for Netflow v9 and 10 for IPFIX\/v10<\/li>\n\n\n\n<li><strong>router-instance (default management)<\/strong> = Specifies which routing instance will be used to route traffic to the collector<\/li>\n\n\n\n<li><strong>template-set<\/strong> = specifies the template used to send data to the collector when using V9 or V10<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<p class=\"wp-block-paragraph\">Some additional commands for flow analysis:<\/p>\n\n<pre class=\"wp-block-code\"><code>show cflowd status<br>show cflowd collector<br>show cflowd collector detail<br>show cflowd interface<\/code><\/pre>\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-cyan-blue-background-color has-background wp-element-button\" href=\"https:\/\/made4flow.com.br\/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn about our NetFlow analysis tool<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https:\/\/api.whatsapp.com\/send?phone=43988477972\" style=\"background-color:#05d100\" target=\"_blank\" rel=\"noreferrer noopener\">Please contact us if you need support<\/a><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Hello Today we&#8217;ll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 &#8211; Configure the NTP server2 &#8211; Configure the cflowd parameters with the NetFlow server3 &#8211; Configure the interface to enable NetFlow Let&#8217;s go through the setup step by step: 1.Configuring the NTP Server It is important to configure an NTP server because flow data uses timestamps based on the router&#8217;s time. If the router&#8217;s time differs from that of the server, the data will not be time-stamped correctly, resulting in a discrepancy in the information. It is important that you configure at least 2 NTP servers and also your router&#8217;s timezone. 2 &#8211; Configure the cflowd parameters with the NetFlow server 3- Configure the interface to enable NetFlow Finally, we need to enable NetFlow on the interfaces that will export it. To do this, use the following commands on each interface: Below is the complete configuration of the Router: And enable the following on all interfaces: Detailed description Some additional commands for flow analysis:<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1311,919],"tags":[903,938,1429],"class_list":["post-19027","post","type-post","status-publish","format-standard","hentry","category-made4flow","category-routers","tag-made4flow","tag-netflow","tag-nokia"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hello Today we&#039;ll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 - Configure the NTP server2 -\" \/>\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\/how-to-configure-netflow-on-nokia-routers\/\" \/>\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=\"How to Configure NetFlow on Nokia Routers - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"Hello Today we&#039;ll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 - Configure the NTP server2 -\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/\" \/>\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=\"2023-12-26T09:47:25+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-01T15:11:41+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to Configure NetFlow on Nokia Routers - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hello Today we&#039;ll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 - Configure the NTP server2 -\" \/>\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\\\/how-to-configure-netflow-on-nokia-routers\\\/#blogposting\",\"name\":\"How to Configure NetFlow on Nokia Routers - Made4it\",\"headline\":\"How to Configure NetFlow on Nokia Routers\",\"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\\\/2023\\\/12\\\/1a.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#articleImage\"},\"datePublished\":\"2023-12-26T09:47:25+00:00\",\"dateModified\":\"2026-07-01T15:11:41+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#webpage\"},\"articleSection\":\"Made4Flow, Routers, made4flow, netflow, Nokia\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#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\\\/routers\\\/#listItem\",\"name\":\"Routers\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/routers\\\/#listItem\",\"position\":2,\"name\":\"Routers\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/routers\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#listItem\",\"name\":\"How to Configure NetFlow on Nokia Routers\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#listItem\",\"position\":3,\"name\":\"How to Configure NetFlow on Nokia Routers\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/routers\\\/#listItem\",\"name\":\"Routers\"}}]},{\"@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\\\/how-to-configure-netflow-on-nokia-routers\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#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\\\/how-to-configure-netflow-on-nokia-routers\\\/#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\\\/how-to-configure-netflow-on-nokia-routers\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/\",\"name\":\"How to Configure NetFlow on Nokia Routers - Made4it\",\"description\":\"Hello Today we'll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\\\/v10 via IP Netstream 1 - Configure the NTP server2 -\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-netflow-on-nokia-routers\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"datePublished\":\"2023-12-26T09:47:25+00:00\",\"dateModified\":\"2026-07-01T15:11:41+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":"How to Configure NetFlow on Nokia Routers - Made4it","description":"Hello Today we'll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 - Configure the NTP server2 -","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#blogposting","name":"How to Configure NetFlow on Nokia Routers - Made4it","headline":"How to Configure NetFlow on Nokia Routers","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\/2023\/12\/1a.png","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#articleImage"},"datePublished":"2023-12-26T09:47:25+00:00","dateModified":"2026-07-01T15:11:41+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#webpage"},"articleSection":"Made4Flow, Routers, made4flow, netflow, Nokia"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#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\/routers\/#listItem","name":"Routers"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/routers\/#listItem","position":2,"name":"Routers","item":"https:\/\/made4it.com.br\/en\/blog\/category\/routers\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#listItem","name":"How to Configure NetFlow on Nokia Routers"},"previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#listItem","position":3,"name":"How to Configure NetFlow on Nokia Routers","previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/routers\/#listItem","name":"Routers"}}]},{"@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\/how-to-configure-netflow-on-nokia-routers\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#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\/how-to-configure-netflow-on-nokia-routers\/#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\/how-to-configure-netflow-on-nokia-routers\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/","name":"How to Configure NetFlow on Nokia Routers - Made4it","description":"Hello Today we'll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 - Configure the NTP server2 -","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/#breadcrumblist"},"author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"creator":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"datePublished":"2023-12-26T09:47:25+00:00","dateModified":"2026-07-01T15:11:41+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":"How to Configure NetFlow on Nokia Routers - Made4it","og:description":"Hello Today we'll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 - Configure the NTP server2 -","og:url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/","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":"2023-12-26T09:47:25+00:00","article:modified_time":"2026-07-01T15:11:41+00:00","twitter:card":"summary_large_image","twitter:title":"How to Configure NetFlow on Nokia Routers - Made4it","twitter:description":"Hello Today we'll show you how to configure your Nokia SR OS router to export NetFlow (IP Netstream). Here we have the Network topology and the Netflow Server information These are the steps required to configure the Nokia SR OS router to export NetFlow v9\/v10 via IP Netstream 1 - Configure the NTP server2 -","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"19027","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 15:11:39","updated":"2026-07-01 17:10:56"},"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\/routers\/\" title=\"Routers\">Routers<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Configure NetFlow on Nokia Routers\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/made4it.com.br\/en\/"},{"label":"Routers","link":"https:\/\/made4it.com.br\/en\/blog\/category\/routers\/"},{"label":"How to Configure NetFlow on Nokia Routers","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-netflow-on-nokia-routers\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19027","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=19027"}],"version-history":[{"count":1,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19027\/revisions"}],"predecessor-version":[{"id":19030,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19027\/revisions\/19030"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=19027"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=19027"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=19027"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}