0

我试图为 Junos 路由器获取 ansible。当我执行以下代码时,出现以下错误:

“任务执行期间发生异常。要查看完整的回溯,请使用 -vvv。错误是:UnicodeDecodeError: 'utf8' codec can't decode byte 0xff in position 0: invalid start by”

我厌倦了在终端设备上启用 netconf,但仍然没有运气。我不能使用任何星系模块,因为我们有那个......

我错过了什么吗?

谢谢

  hosts: 10.1.1.1
  gather_facts: true
  connection: local
  tasks:
    - name: show version
      junos_command:
        commands:
          - show version
        host: "{{ ansible_host }}"
      register: output
4

2 回答 2

0

UTF-8 比特流不能按规范包含 0xFE 和 0xFF。

于 2020-08-04T08:31:48.367 回答
0

UTF-8 比特流不能按规范包含 0xFE 和 0xFF,您可以使用以下命令找到它们:

grep -P '[\xe9\xFF]' * -r 
于 2020-10-08T08:29:02.460 回答