USB / 직렬 케이블로 이중 문자 디스플레이를 표시하는 RS-232 콘솔에 퍼티 직렬 포트 액세스


0

RS-232 인터페이스를 통해 Matrix Sense 방화벽 관리 콘솔에 액세스하려고하는데 퍼티와 함께 ​​표시되는 디스플레이가 이상합니다. 하드웨어는 PC 엔진 APU4B4 마더 보드입니다.

Windows 7 컴퓨터에서 저렴한 USB-RS-232 변환기를 사용하고 있습니다. 이 장치는 드라이버 설치없이 COM4 포트에서 인식되었습니다.

따라서 다음 매개 변수를 사용하십시오.

  • 속도 115200 보드
  • 8 데이터 비트
  • 1 정지 비트
  • 패리티 없음
  • 흐름 제어 XON / XOFF

퍼티 매개 변수 페이지 1

또한 더 나은 디스플레이를 찾기 위해 다른 매개 변수를 약간 조정했습니다.

  • 로컬 반향 제거
  • 로컬 라인 편집 Force on

그러나 많은 일을하지 않는 것 같습니다.

퍼티 매개 변수 페이지 2

결국 나는이 이상한 디스플레이를 얻는다 :

퍼티 디스플레이

일부 문자는 두 번 표시되고 다른 문자는 무작위로 나타납니다. 솔루션에 가까이있는 것처럼 보이지만 여기서 무엇이 잘못되었는지 알 수 없습니다.

답변:


1

나는 그러한 하드웨어에 전혀 경험이 없지만 APU1D에서 비슷한 증상을 나타내는 이 스레드 를 발견 했습니다 .

응답:

iPXE의 자체 직렬 콘솔 지원 ( CONSOLE_SERIALin config/console.h)과 BIOS의 직렬 콘솔 리디렉션을 모두 활성화했습니다 .

잘못된 수정 :

옵션이 주석 처리되어 있기 때문에 PCBIOS 콘솔이 활성화되었음을 알지 못했습니다 config/console.h.

정의하지 않으면 내 문제 CONSOLE_PCBIOSconfig/console.h해결되었습니다.

왜 그런지 설명하십시오.

CONSOLE_PCBIOS 화면에 쓰고 키보드에서 읽는 "일반"콘솔입니다.

CONSOLE_SERIAL iPXE의 자체 직렬 포트 드라이버입니다.

BIOS 직렬 재 지정은 화면에 쓰여진 문자가 직렬 포트로 전송되는 BIOS (BIOS 설정 화면을 통해 구성 가능)로 구현 된 기능입니다.

문제는 CONSOLE_SERIALBIOS 직렬 리디렉션이 활성화되어 있다는 것입니다. iPXE는 각 문자를 화면 (으로 인해 CONSOLE_PCBIOS)과 직렬 포트 (로 인해 CONSOLE_SERIAL)에 씁니다 . 그런 다음 BIOS 직렬 재 지정이 활성화되어 있으므로 BIOS는 문자의 추가 사본을 직렬 포트에 씁니다. 따라서 직렬 포트에 각 문자의 두 사본이 있습니다. 하나는 iPXE에 의해 직접 작성되고 하나는 BIOS에 의해 작성됩니다.

해결 방법은 CONSOLE_SERIALBIOS 설정 화면을 통해 BIOS 직렬 리디렉션을 비활성화 하거나 비활성화하는 것입니다. 비활성화하지 마십시오 CONSOLE_BIOS

(아마 의미 CONSOLE_PCBIOS)

… 로컬 키보드와 모니터를 통해 실제로 상호 작용하기를 원하지 않는 한.

iPXE CONSOLE_SERIAL는 BIOS의 직렬 재 지정 기능보다 강력하므로 CONSOLE_SERIALBIOS 설정 화면을 통해 BIOS 직렬 재 지정을 활성화하고 비활성화하는 것이 좋습니다 .

asker의 의견 :

적어도이 alix 보드의 경우 iPXE의 직렬 드라이버는 BIOS의 리디렉션 기능을 사용하여 메뉴가 제대로 표시되지 않으므로 실제로는 다른 직렬 장치를 사용해 보지 않은 것이 좋습니다.

불행히도 이러한 장치는 매우 제한된 BIOS와 함께 제공되며 실제로 부팅 설정 만 변경할 수 있습니다.

그럼에도 불구하고, 나는 내가 만족하는 해결책을 찾았다. 옵션을 config/defaults/pcbios.h정의하는 행 CONSOLE_PCBIOS을 다음과 같이 변경 하여 파일 을 수정 했습니다.

  #define CONSOLE_PCBIOS ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_TUI )

이렇게하면 적어도 직렬 설정에서 메뉴가 한 번만 인쇄되고 iPXE 출력도 정상적인 경우 (정렬이 아닌) 괜찮습니다.

귀하의 경우가 다소 다르더라도 근본 원인이 비슷하다고 생각합니다. 두 가지 소프트웨어가 직렬 포트로 문자를 보내면 그 중 하나가 BIOS입니다. 둘 중 하나를 침묵시키는 방법을 찾으십시오.


그 정보에 감사드립니다. 나는 당신이 문제의 한 가지 원인을 발견했다고 생각합니다. 내가 이해 한 것은 내가 구입 한 방화벽에 버그가 있다는 것입니다. 포스트 전에 iPXE에 대해 알지 못했기 때문입니다. 이제 두 번째 질문은 해결되지 않았으며 각 줄 다음에 읽을 수있는 "쓰레기"문자와 관련이 있습니다. 따라서 iPXE 문제에 대해서는 제조업체에 정보를 보내야한다고 생각합니다.
Glassfrog

1
@Glassfrog iPXE가 관련되어 있는지 또는 다른 것이 있는지 모르겠습니다. 난 당신이 당신의 BIOS 이외의 문자를 직렬 포트 화면으로 보내는 것을 의심합니다 . BIOS는 화면으로 이동하는 내용을 모니터링하고 직렬 포트로 에코하므로 중복 된 문자입니다.
Kamil Maciorowski

1
가능성은 낮습니다 – 최근 GRUB2와 같은 문제가있었습니다. 자체 직렬 지원을 활성화했으며 HP BIOS가 이미 직렬 리디렉션을 수행했음을 인식하지 못하므로 두 개의 겹치는 메뉴가 있습니다.
grawity

0

방화벽을 재부팅하고 컴퓨터를 재부팅 한 후 콘솔을 올바르게 볼 수있었습니다. 퍼티를 먼저 시작한 다음 방화벽을 시작했습니다.

여기에 로그가 있습니다 (중요한 부분을 검열했습니다). 그러나 로그의 일부에는 여전히 "이중 문자 문제"가 있음을 알 수 있습니다. 두 번째 요점은 "러비 문자"입니다.

소중한 도움을 주신 @Kamil Maciorowski에게 감사합니다.

FreeBSD/amd64 (pfSense.localdomain) (ttyu0)

pfSense - Serial: ▒▒▒▒▒▒▒▒▒▒ - Netgate Device ID: ********************

*** Welcome to pfSense 2.4.3-RELEASE-p1 (amd64) on pfSense ***

 WAN (wan)       -> igb2       ->
 LAN (lan)       -> igb3       -> v4: 176.16.0.1/12
 OPT1 (opt1)     -> igb0       ->
 OPT2 (opt2)     -> igb1       ->
 ****** (opt3)   -> ovpnc1     ->

 0) Logout (SSH only)                  9) pfTop
 1) Assign Interfaces                 10) Filter Logs
 2) Set interface(s) IP address       11) Restart webConfigurator
 3) Reset webConfigurator password    12) PHP shell + pfSense tools
 4) Reset to factory defaults         13) Update from console
 5) Reboot system                     14) Disable Secure Shell (sshd)
 6) Halt system                       15) Restore recent configuration
 7) Ping host                         16) Restart PHP-FPM
 8) Shell

Enter an option: 4


You are about to reset the firewall to factory defaults.
The firewall will reboot afteruresetting the configuration.
All additional packages installed will be removed.
Booting from Hard Disk...|n]? y
H
F1  pfSenserebooting now.
Sep 15 06:33:20 ipsec_starter[38232]: charon stopped after 200 ms
F6 PXE 06:33:20 ipsec_starter[38232]: ipsec starter stopped
Boot:  F1 ax 60 seconds) for system process `vnlru' to stop... done
//bboooott//ccoonnffiigg::  --SS111155220000  --Daemon' to stop... done
Daiting (max 60 seconds) for system process `syncer' to stop...
//ncing disks, vnodes remaining... 0 0 done
All buffers synced.
 Coonnssoolleess::  iinntteerrnnaall  vviiddeeoo//kkeeyybbooaarrdd    sseerriia
uhub2: detached
 BIIOOSS  ddrriivvee  CC::  iiss  ddiisskk00
coreboot build 20171130
 BIIOOSS  663399kkBB//33440066445566kkBB  aavvaaiillaabbllee  mmeemmoorryy
4080 MB ECC DRAM

SeaBIOS (version rel-1.11.0.1-0-g90da88d)
 FrreeeeBBSSDD//xx8866  bboooottssttrraapp  llooaaddeerr,,  RReevviissiioonn  1
Press F10 key now for boot menn
 (MMoonn  MMaarr  1199  0066::5566::3311  CCDDTT  22001188  rroooott@@bbuuiilld

 Looaaddiinngg  //bboooott//ddeeffaauullttss//llooaaddeerr..ccoonnff

 |
 H                  ____
 H    __  ____    //  __||______    ______  __  ____    ______    ______
 H  ||  ''__  \\||  ||__//  ____||//  __  \\  ''__  \\//  ____||//  __  \\
 H  ||  ||__))  ||    __\\____  \\    ____//  ||  ||  \\____  \\    ____//
 H  ||  ..____/___//\\______||__||  ||__||______//\\______||
 H  ||__||
 H
                                             H
 H++=======================================H++==================================
 H||          HWWeellccoommee  ttoo  ppffSSeennssee
 H||                                       H||||
 H||HH..BBoooott  MMuullttii  UUsseerr  [[EEnntteerr]]                         |
 H||HH..BBoooott  [[SS]]iinnggllee  UUsseerr||||            __________________ |
 H||HH..[[EEsscc]]aappee  ttoo  llooaaddeerr  pprroommpptt``  ________      // |
 H||HH..RReebboooott                       H||||      //    //         //      |
 H||                                       H||||    //    //______//    //     |
 H||HOOppttiioonnss::                      H||||  //      ____________//       |
 H||HH..[[KK]]eerrnneell::  kkeerrnneell  ((11  ooff  22))                    /|
 H||HH..CCoonnffiigguurree  BBoooott  [[OO]]ppttiioonnss......              //_|
 H||                                       H||      //                         |
 H||                                       H||    //______________________    _
 H++=======================================H++==================================


// HAAuuttoobboooott  iinn  22  sseeccoonnddss..  [[SSppaaccee]]  ttoo  ppaauuse
   HAAuuttoobboooott  iinn  11  sseeccoonnddss..  [[SSppaaccee]]  ttoo  ppaauuse
   H

//bboooott//kkeerrnneell//kkeerrnn ddaattaa==00xxbb66ffaa ssyymmss==[[00xx8 ++08
 ++00xx1 ]] affeedd

 Boooottiinngg......

KDB: debugger backends: ddb
KDB: current backend: ddb
Copyright (c) 1992-2017 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
        The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 11.1-RELEASE-p10 #13 r313908+293707af843(RELENG_2_4): Thu May 10 15:09:8
    root@buildbot2.netgate.com:/builder/ce-243/tmp/obj/builder/ce-243/tmp/FreeB4
FreeBSD clang version 5.0.1 (tags/RELEASE_501/final 320880) (based on LLVM 5.0.)
VT(vga): resolution 640x480
CPU: AMD GX-412TC SOC                                (998.15-MHz K8-class CPU)
  Origin="AuthenticAMD"  Id=0x******  Family=0x16  Model=0x30  Stepping=1
  Features=0x178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,>
  Features2=0x3ed8220b<SSE3,PCLMULQDQ,MON,SSSE3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT>
  AMD Features=0x2e500800<SYSCALL,NX,MMX+,FFXSR,Page1GB,RDTSCP,LM>
  AMD Features2=0x1d4037ff<LAHF,CMP,SVM,ExtAPIC,CR8,ABM,SSE4A,MAS,Prefetch,OSVW>
  Structured Extended Features=0x8<BMI1>
  XSAVE Features=0x1<XSAVEOPT>
  SVM: NP,NRIP,AFlush,DAssist,NAsids=8
  TSC: P-state invariant, performance statistics
real memory  = 5083496448 (4848 MB)
avail memory = 4073701376 (3884 MB)
Event timer "LAPIC" quality 100
ACPI APIC Table: <CORE   COREBOOT>
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 4 core(s)
ioapic1: Changing APIC ID to 5
ioapic0 <Version 2.1> irqs 0-23 on motherboard
ioapic1 <Version 2.1> irqs 24-55 on motherboard
SMP: AP CPU #1 Launched!
SMP: AP CPU #3 Launched!
SMP: AP CPU #2 Launched!
Timecounter "TSC" frequency 998149043 Hz quality 1000
iwi_monitor: You need to read the LICENSE file in /usr/share/doc/legal/intel_iw.
iwi_monitor: If you agree with the license, set legal.intel_iwi.license_ack=1 i.
module_register_init: MOD_LOAD (iwi_monitor_fw, 0xffffffff80682e00, 0) error 1
random: entropy device external interface
wlan: mac acl policy registered
ipw_bss: You need to read the LICENSE file in /usr/share/doc/legal/intel_ipw.LI.
ipw_bss: If you agree with the license, set legal.intel_ipw.license_ack=1 in /b.
module_register_init: MOD_LOAD (ipw_bss_fw, 0xffffffff8065c140, 0) error 1
ipw_ibss: You need to read the LICENSE file in /usr/share/doc/legal/intel_ipw.L.
ipw_ibss: If you agree with the license, set legal.intel_ipw.license_ack=1 in /.
module_register_init: MOD_LOAD (ipw_ibss_fw, 0xffffffff8065c1f0, 0) error 1
ipw_monitor: You need to read the LICENSE file in /usr/share/doc/legal/intel_ip.
ipw_monitor: If you agree with the license, set legal.intel_ipw.license_ack=1 i.
module_register_init: MOD_LOAD (ipw_monitor_fw, 0xffffffff8065c2a0, 0) error 1
iwi_bss: You need to read the LICENSE file in /usr/share/doc/legal/intel_iwi.LI.
iwi_bss: If you agree with the license, set legal.intel_iwi.license_ack=1 in /b.
module_register_init: MOD_LOAD (iwi_bss_fw, 0xffffffff80682ca0, 0) error 1
iwi_ibss: You need to read the LICENSE file in /usr/share/doc/legal/intel_iwi.L.
iwi_ibss: If you agree with the license, set legal.intel_iwi.license_ack=1 in /.
module_register_init: MOD_LOAD (iwi_ibss_fw, 0xffffffff80682d50, 0) error 1
kbd0 at kbdmux0
netmap: loaded module
module_register_init: MOD_LOAD (vesa, 0xffffffff81162ce0, 0) error 19
nexus0
vtvga0: <VT VGA driver> on motherboard
cryptosoft0: <software crypto> on motherboard
padlock0: No ACE support.
acpi0: <CORE COREBOOT> on motherboard
acpi0: Power Button (fixed)
cpu0: <ACPI CPU> on acpi0
cpu1: <ACPI CPU> on acpi0
cpu2: <ACPI CPU> on acpi0
cpu3: <ACPI CPU> on acpi0
atrtc0: <AT realtime clock> port 0x70-0x71 irq 8 on acpi0
Event timer "RTC" frequency 32768 Hz quality 0
attimer0: <AT timer> port 0x40-0x43 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Timecounter "ACPI-safe" frequency 3579545 Hz quality 850
acpi_timer0: <32-bit timer at 3.579545MHz> port 0x818-0x81b on acpi0
acpi_button0: <Power Button> on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pcib1: <ACPI PCI-PCI bridge> irq 24 at device 2.1 on pci0
pcib1: failed to allocate initial I/O port window: 0x1000-0x1fff
pci1: <ACPI PCI bus> on pcib1
igb0: <Intel(R) PRO/1000 Network Connection, Version - 2.5.3-k> mem 0xf7900000-1
igb0: Using MSIX interrupts with 3 vectors
igb0: Ethernet address: **:**:**:**:**:**
igb0: Bound queue 0 to cpu 0
igb0: Bound queue 1 to cpu 1
igb0: netmap queues/slots: TX 2/1024, RX 2/1024
pcib2: <ACPI PCI-PCI bridge> irq 25 at device 2.2 on pci0
pci2: <ACPI PCI bus> on pcib2
igb1: <Intel(R) PRO/1000 Network Connection, Version - 2.5.3-k> port 0x2000-0x22
igb1: Using MSIX interrupts with 3 vectors
igb1: Ethernet address: **:**:**:**:**:**
igb1: Bound queue 0 to cpu 2
igb1: Bound queue 1 to cpu 3
igb1: netmap queues/slots: TX 2/1024, RX 2/1024
pcib3: <ACPI PCI-PCI bridge> irq 26 at device 2.3 on pci0
pci3: <ACPI PCI bus> on pcib3
igb2: <Intel(R) PRO/1000 Network Connection, Version - 2.5.3-k> port 0x3000-0x33
igb2: Using MSIX interrupts with 3 vectors
igb2: Ethernet address: **:**:**:**:**:**
igb2: Bound queue 0 to cpu 0
igb2: Bound queue 1 to cpu 1
igb2: netmap queues/slots: TX 2/1024, RX 2/1024
pcib4: <ACPI PCI-PCI bridge> at device 2.4 on pci0
pci4: <ACPI PCI bus> on pcib4
igb3: <Intel(R) PRO/1000 Network Connection, Version - 2.5.3-k> port 0x4000-0x44
igb3: Using MSIX interrupts with 3 vectors
igb3: Ethernet address: **:**:**:**:**:**
igb3: Bound queue 0 to cpu 2
igb3: Bound queue 1 to cpu 3
igb3: netmap queues/slots: TX 2/1024, RX 2/1024
pci0: <encrypt/decrypt> at device 8.0 (no driver attached)
xhci0: <AMD FCH USB 3.0 controller> mem 0xf7f22000-0xf7f23fff irq 18 at device 0
xhci0: 32 bytes context size, 64-bit DMA
xhci0: Unable to map MSI-X table
usbus0 on xhci0
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0: <AMD Hudson-2 AHCI SATA controller> port 0x5010-0x5017,0x5020-0x5023,0x50
ahci0: AHCI v1.30 with 2 6Gbps ports, Port Multiplier supported with FBS
ahcich0: <AHCI channel> at channel 0 on ahci0
ahcich1: <AHCI channel> at channel 1 on ahci0
ehci0: <AMD FCH USB 2.0 controller> mem 0xf7f26000-0xf7f260ff irq 18 at device 0
usbus1: EHCI version 1.0
usbus1 on ehci0
usbus1: 480Mbps High Speed USB v2.0
isab0: <PCI-ISA bridge> at device 20.3 on pci0
isa0: <ISA bus> on isab0
sdhci_pci0: <Generic SD HCI> mem 0xf7f27000-0xf7f270ff at device 20.7 on pci0
sdhci_pci0: 1 slot(s) allocated
orm0: <ISA Option ROM> at iomem 0xef000-0xeffff on isa0
ppc0: cannot reserve I/O port range
uart0: <16550 or compatible> at port 0x3f8 irq 4 flags 0x10 on isa0
uart0: console (115200,n,8,1)
uart1: <16550 or compatible> at port 0x2f8 irq 3 on isa0
hwpstate0: <Cool`n'Quiet 2.0> on cpu0
Timecounters tick every 1.000 msec
nvme cam probe device init
ugen0.1: <0x1022 XHCI root HUB> at usbus0
ugen1.1: <AMD EHCI root HUB> at usbus1
uhub0: <0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
uhub1: <AMD EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus1
uhub0: 4 ports with 4 removable, self powered
uhub1: 2 ports with 2 removable, self powered
ugen1.2: <vendor 0x0438 product 0x7900> at usbus1
uhub2 on uhub1
uhub2: <vendor 0x0438 product 0x7900, class 9/0, rev 2.00/0.18, addr 2> on usbu1
uhub2: 4 ports with 4 removable, self powered
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: <T50S2STMLC-004G OHY06A S> ATA8-ACS SATA 2.x device
ada0: Serial Number *************
ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 512bytes)
ada0: 3831MB (7847280 512 byte sectors)
Trying to mount root from ufs:/dev/ufsid/**************** [rw]...
WARNING: /: TRIM flag on fs but disk does not support TRIM
Configuring crash dumps...
No suitable dump device was found.
/dev/ufsid/****************: FILE SYSTEM CLEAN; SKIPPING CHECKS
/dev/ufsid/****************: clean, 669160 free (4136 frags, 83128 blocks, 0.4%)
Filesystems are clean, continuing...
Mounting filesystems...
random: unblocking device.

        __
 _ __  / _|___  ___ _ __  ___  ___
| '_ \| |_/ __|/ _ \ '_ \/ __|/ _ \
| |_) |  _\__ \  __/ | | \__ \  __/
| .__/|_| |___/\___|_| |_|___/\___|
|_|


Welcome to pfSense 2.4.3-RELEASE (Patch 1)...

...ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lE
32-bit compatibility ldconfig path: /usr/lib32
done.
External config loader 1.0 is now starting... ada0s1 ada0s1a
Launching the init system...Updating CPU Microcode...
CPU: AMD GX-412TC SOC                                (998.15-MHz K8-class CPU)
  Origin="AuthenticAMD"  Id=0x******  Family=0x16  Model=0x30  Stepping=1
  Features=0x178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,>
  Features2=0x3ed8220b<SSE3,PCLMULQDQ,MON,SSSE3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT>
  AMD Features=0x2e500800<SYSCALL,NX,MMX+,FFXSR,Page1GB,RDTSCP,LM>
  AMD Features2=0x1d4037ff<LAHF,CMP,SVM,ExtAPIC,CR8,ABM,SSE4A,MAS,Prefetch,OSVW>
  Structured Extended Features=0x8<BMI1>
  XSAVE Features=0x1<XSAVEOPT>
  SVM: NP,NRIP,AFlush,DAssist,NAsids=8
  TSC: P-state invariant, performance statistics
Done.
.... done.
Initializing.................. done.
Starting device manager (devd)...done.
Loading configuration......done.
..............................Updating configuration...done.
Checking config backups consistency...done.
Setting up extended sysctls...done.
Setting timezone...done.
Configuring loopback interface...done.
Starting syslog...done.
Starting Secure Shell Services...done.
Setting up interfaces microcode...done.
Configuring loopback interface...done.
Creating wireless clone interfaces...done.
Configuring LAGG interfaces...done.
Configuring VLAN interfaces...done.
Configuring QinQ interfaces...done.
Configuring WAN interface...done.
Configuring LAN interface...done.
Configuring CARP settings...done.
Syncing OpenVPN settings...done.
Configuring firewall......done.
Starting PFLOG...done.
Setting up gateway monitors...done.
Setting up static routes...done.
Setting up DNSs...Starting DNS Resolver...done.
done.
Synchronizing user settings...done.
Starting webConfigurator...done.
Configuring CRON...done.
Starting NTP time client...done.
Starting DHCP service...done.
Starting DHCPv6 service...done.
Configuring firewall......done.
Generating RRD graphs...done.
Starting syslog...done.
Starting CRON... done.
pfSense 2.4.3-RELEASE (Patch 1) amd64 Thu May 10 15:02:52 CDT 2018
Bootup complete
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.