{"id":20074298,"url":"https://github.com/juniper/docker-saltstack-junos","last_synced_at":"2025-06-17T01:05:22.823Z","repository":{"id":137207481,"uuid":"73187670","full_name":"Juniper/docker-saltstack-junos","owner":"Juniper","description":"Dockerfile to create a working Saltstack container for Junos","archived":false,"fork":false,"pushed_at":"2017-01-13T12:13:38.000Z","size":85,"stargazers_count":21,"open_issues_count":0,"forks_count":7,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-05-05T21:35:17.803Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Juniper.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-11-08T13:18:14.000Z","updated_at":"2021-12-09T09:45:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"3d48cc7f-e1e3-4e73-9673-3b95aa1dbe07","html_url":"https://github.com/Juniper/docker-saltstack-junos","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Juniper/docker-saltstack-junos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Juniper%2Fdocker-saltstack-junos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Juniper%2Fdocker-saltstack-junos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Juniper%2Fdocker-saltstack-junos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Juniper%2Fdocker-saltstack-junos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Juniper","download_url":"https://codeload.github.com/Juniper/docker-saltstack-junos/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Juniper%2Fdocker-saltstack-junos/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260269429,"owners_count":22983645,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T14:50:23.220Z","updated_at":"2025-06-17T01:05:22.776Z","avatar_url":"https://github.com/Juniper.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SaltStack Docker Containers for Junos\n\n[![Build Status](https://travis-ci.org/Juniper/docker-saltstack-junos.svg?branch=master)](https://travis-ci.org/Juniper/docker-saltstack-junos)\n\nThis project has been designed to help you to get started easily with SaltStack on Junos.\nIn this project you'll find:\n- **A docker container** with all SaltStack and all Junos Libraries\n- **Make script** to easily start, stop and clean any number of docker containers\n- **A Use-Case with SaltStack Engine** to collect Syslog from Junos and convert them into Events in SaltStack\n- **A Use-Case with SaltStack Beacon** to monitor a Junos string in a file and convert it into Event in SaltStack\n\n# Table of Content\n   * [SaltStack Docker Containers for Junos](#saltstack-docker-containers-for-junos)\n   * [Getting Started / 'Hello World' with Engine](#getting-started--hello-world-with-engine)\n      * [1- Define Proxies](#1--define-proxies)\n      * [2- Start Salt Master, Engine and Proxies Automatically](#2--start-salt-master-engine-and-proxies-automatically)\n      * [4- Access Salt Master Shell](#4--access-salt-master-shell)\n      * [5- (optional) Verify Proxy is running](#5--optional-verify-proxy-is-running)\n   * [Contributer](#contributer)\n   * [Known Issues](#known-issues)\n\n# More Content \n   * [The Use Case Engine](uc-engine/README.md)\n   * [The Use Case Beacon](uc-beacon/README.md)\n   * [The Makefile](docs/MAKEFILE.md)\n   * [Operation](docs/OPERATION.md)\n\n# Getting Started / 'Hello World' with Engine\n\n## 1- Define Proxies\n\nDefine `uc-engine/pillar/top.sls` for example: \n\n```bash\nroot@host# cat uc-engine/pillar/top.sls\n\nbase:\n  proxy01:\n    - proxy01\n```\n\nand associate  under `uc-engine/pillar/`:\n\n```bash\nroot@host# cat uc-engine/pillar/proxy01.sls\n\nproxy:\n   proxytype: junos\n   host: 172.17.254.1\n   username: admin\n   passwd: juniper1\n```\n\n## 2- Start Salt Master, Engine and Proxies Automatically \n\nUnder the main directory execute:\n\n```bash\nroot@host# make master-start\n```\n\nor\n\n```bash\n#make clean will not work if starting docker like that\n\nroot@host# docker run -d juniper/saltstack salt-master -l debug\n```\n\n\n*Note:* Proxies are getting automatically started within the Salt Master Engine\n\n## 3- Verify\n\nVerify that `saltmaster-engine` is running:\n\n```bash\nroot@host# docker ps \n```\n\n## 4- Access Salt Master Shell\n\n```\nroot@host# make master-shell\n```\n\n## 5- (optional) Verify Proxy is running\n\nCheck if proxy01 is running under the saltmaster-engine\n```\nroot@saltmaster-engine# ps -ef | grep proxy01\n```\n\n# Contributer\n\n- Damien Garros\n- Iddo Cohen\n- Nitin Kumar\n- Stephen Steiner \n\n# Known Issues\n\n- **urllib3\\util\\ssl_.py - 'SNIMissingWarning, InsecurePlatform' Warnings:** Solution is to upgrade Python from 2.7.6 to 2.7.9 or ```pip install pyOpenSSL ndg-httpsclient pyasn1```. Please note it does not effect salt-master, salt-minion or salt-proxy, in their functionality. \n- **Currently netconf port 830 must be open on the Junos device** Solution is to ```set system services netconf ssh```. Please note an option for using port 22 is being added.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuniper%2Fdocker-saltstack-junos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuniper%2Fdocker-saltstack-junos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuniper%2Fdocker-saltstack-junos/lists"}