Ошибка = % Invalid input detected at ‘^’ marker. = cisco packet tracer — циско пэкет трайсер
![]()
может возникнуть при «копипасте» — копировании (клик правой кнопкой мыши по консоли -> «вставить») комадны в консоль управления маршрутизатором.
если же набрать её самомстоятельно — то всё работает нормально —
у меня такая проблема наблюдалась с
show ip route
На практике,правда, можно столкнуться и с такой ситуацией (решение в другом случае)
Key Words for FKN + antitotal forum (CS VSU):
- неофициальный форум фкн
- ФКН ВГУ Воронеж
- программирование Воронеж
- ВГУ информатика
- ВГУ компьютерных наук
- Log in to post comments
- 38595 reads
Cisco CLI Error: % Invalid input detected at ‘^’ marker
This message is not restricted to a particular CLI Mode or to a particular CLI command or task.
What does this error mean?
This error indicates that we have made an error while typing in a CLI command. This error message is preceded by a line with the single character ‘^’. There may be multiple errors in a line that we have typed in at the CLI. The ‘^’ indicates the first instance of an error in the line typed in.
For example, suppose we were attempting to configure an IP address on a router interface. We attempt to configure it as follows:
Router Console
Router#config t
Router(config)#int gi0/1
Router(config-if)#ip adress 10.100.100.1. 255.255.255.0
Router(config-if)#ip ad ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#
Looking at the command that we have typed in, we can see that we have misspelled the word «address». The ‘^’ under the letter ‘r’ in the word «address» informs us that there is an error at the letter ‘r’.
We can correct the error and type in the command again.
Router Console
Router#config t
Router(config)#int gi0/1
Router(config-if)#ip adress 10.100.100.1. 255.255.255.0
Router(config-if)#ip ad ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#ip address 10.100.100.1. 255.255.255.0
Router(config-if)#ip address 10.100.100.1 ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#
We have corrected the error in the word «address» but we notice that there is another error message. This time we notice that the ip address that we are trying to configure has an extra ‘.’ at the end. The ‘^’ indicates that there is an error at this location in the line that we have typed in.
We will re-enter the command without the extra ‘.’
Router Console
Router#config t
Router(config)#int gi0/1
Router(config-if)#ip adress 10.100.100.1. 255.255.255.0
Router(config-if)#ip ad ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#ip address 10.100.100.1. 255.255.255.0
Router(config-if)#ip address 10.100.100.1 ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#ip address 10.100.100.1 255.255.255.0
Router(config-if)#
This time the command is accepted with no warnings or error messages.
Point to note: There may be multiple errors in a line, but the ‘^’ character appears underneath the first error that is found. All of the errors are not highlighted at the same time.
A common occurence of this error with the «show» command
Take a look at the following example:
Router Console
Router(config)#sh run
Router(config)#s ^
% Invalid input detected at ‘^’ marker.
Router(config)#
We are attempting to run the «show running-config» command. Why do we see an error message instead of the desired output?
Upon further inspection, we realize that we are currently in Global Configuration Mode (as indicated by the word ‘config’ in the CLI prompt). Most of the «show» commands are available in Privileged EXEC Mode (although a large number of them are also available in User EXEC Mode).
In this instance, if we want to see the running configration, we would need to either precede the command with the word «do», or exit back into Privileged EXEC Mode and run the «show run» command.
Router Console
Router(config)#sh run
Router(config)#s ^
% Invalid input detected at ‘^’ marker.
Router(config)#do sh run
Building configuration.
Current confguration: 2440 bytes
!
version 15.5
no service timestamps log datetime msec
no service timestamps debug datetime msec
.
.
Router(config)#
If we run into an «Invalid input detected at ‘^’ marker» error while attempting to run a «show» command we should always check to confirm that we are not in a Configuration Mode.
Remember : The «show running-config» and «show startup-config» commands are only available in Privileged EXEC Mode — they are not available in User EXEC Mode!
Other common occurences of this error
Interface command
If you run into this error while trying to enter the Interface Specific Configuraiton Mode using the interface command, it is possible that the interface label has been incorrectly typed in.
In the following example, the switch only has 26 gigabitethernet interfaces (0/1 to 0/26). We are attempting to configure interface gi 0/27. The ‘^’ character indicates that 0/27 is not a valid interface label.
Switch Console
Switch(config)#interface gigabitethernet 0/27
Router(config)#interface gigabitethernet 0/2 ^
% Invalid input detected at ‘^’ marker.
Switch(config)#
In the following example, we are attempting to configure interface gigabitethernet 3/10 on a switch stack. The stack only consists of 2 physical switches — the range of valid interfaces for the stack is 0/1 — 0/26 and 1/1 — 1/26. Interface gigabitethernet 3/10 is not a valid interface for this switch stack.
Switch Console
Switch(config)#interface gigabitethernet 3/10
Router(config)#interface gigabitethernet ^
% Invalid input detected at ‘^’ marker.
Switch(config)#
Ip address command
If you run into this error while trying to configure an IP address on an interface, make a note of where the ‘^’ character appears. In the following example, the ‘^’ character appears at the beginning of the word «address».
Switch Console
Switch(config)#interface gigabitethernet 0/1
Switch(config-if)#ip address 192.168.0.1 255.255.255.0
Router(config-if)#ip ^
% Invalid input detected at ‘^’ marker.
Switch(config-if)#
The position of the ‘^’ character seems to indicate that the word address is not a valid keyword or parameter in the current command context. We confirm this by entering ‘?’ after the first word of the command as follows:
Switch Console
Switch(config)#interface gigabitethernet 0/1
Switch(config-if)#ip address 192.168.0.1 255.255.255.0
Router(config-if)#ip ^
% Invalid input detected at ‘^’ marker.
Switch(config-if)#ip ?
| . | . |
| arp | Configure ARP features |
| dhcp | Configure DHCP parameters for this interface |
| . | . |
Switch(config-if)#ip
The context sensitive help indicates that the ip address command is not a valid command in the current context. What could be the reason for this? The most likely reason is that we are on a Layer 2 switch attempting to configure an IP address on a Layer 2 interface. IP addresses can only be configured on Layer 3 interfaces.
Want to test your networking skills with hands-on configuration and troubleshooting questions? Try out the Workshops section of this website here: Workshops (Login required).
Read how to use the device simulators on this website here: Workshops — General Instructions

Have a comment, question or feedback? Join the discussion below.
Ryan • 5 months ago
~~Can’t set a IP address on a Switch~~ This is a Level 2 device. I made this mistake, and this is how I solved it.
My mistake was trying to assign an IP address to the Interfaces (ports), and this is not available on a Level 2 interface.
The solution is to create/use a VLAN, and turn on `ip routing` for the VLAN.
Then `int range fa0/1-8` and set the whole range of interfaces (ports). Use `switchport mode access` and `switchport access vlan 10`, once you have selected your range of ports.
go give the VLAN an IP address, if you haven’t already.
Now there is a VLAN connected to the Cisco Switch with an IP address.
Reply • Mark as spam
saad • 1 year ago
Hello ! Please could you explain me how to solve when the commend for example » nhrp unrecognized commend » in cisco packet tracer
Cisco Packet Tracer ошибка при настройке роутера (show и ip address)
Получаю
Router(config-if)#ip address 192.168.1.1 255.255.255.0
^
% Invalid input detected at ‘^’ marker.
Что я делаю не так? Может устанавливаю CPT как-то не так?
Версия CPT: 6.0.1.0011
Голосование за лучший ответ
Нам тут перевести «Invalid input detected at ‘^’ marker» или сами справитесь?
Борис КошкинЗнаток (454) 7 лет назад
Я понимаю что он ругается на строчку выше. И конкретно на место где написано ip
но я не понимаю от чего эти претензии
Команды вроде прописаны верно
Брал их из своих старых работ, где всё срабатывало на ура. В этой же версии CPT
Базовая настройка Cisco IOS
Для подключения к устройству используйте консольный кабель и программу Hyper Terminal, либо подключитесь по сети используя telnet или SSH. Интерфейс Cisco IOS разделяется на несколько режимов. Доступные вам команды зависят от режима, в котором вы находитесь в данный момент. Для просмотра списка доступных в этом режиме команд введите знак вопроса (?). Начиная сессию связи с устройством, вы обычно попадаете в пользовательский режим выполнения комманд, или user EXEC mode. В этом режиме список команд сильно ограничен. В основном доступно лишь несколько show и clear команд. Чтобы получить доступ ко всем командам, требуется перейти в привилегированный режим (privileged EXEC mode). Переход осуществляется командой enable. Обычно требуется ввести пароль для доступа к привилегированному режиму. Из этого режима можно вводить любые команды либо перейти в режим конфигурирования.
Из режима конфигурирования можно переходить к настройкам интерфейсов, линий доступа, списков доступа или глобальным настройкам. Эти настройки задаются в соответствующих подрежимах либо в глобальном конфигурационном режиме. Все производимые настройки изменяют текущую конфигурацию или running-configuration. Текущая конфигурация теряется при перезагрузке. Если сохранить конфигурацию, то команды записываются в файл startup-configuration и не теряются при перезагрузке устройства. Когда вы включаете маршрутизатор Cisco (подаете питание), сначала он проводит стартовую самодиагностику, power-on self-test или POST. Если она проходит успешно, то начинается загрузка Cisco IOS из флеш памяти (если IOS файл там есть). После загрузки, IOS ищет стартовую конфигурацию – startup-config — она находится в NVRAM. Стартовая конфигурация считывается и применяется, при этом она копируется в оперативную память RAM и называется текущей конфигурацией или running-config. После просмотра информации о загрузке нажмите Enter и вы перейдете к интерфейсу командной строки CLI.
Основные режимы CLI (Command Line Interface)
Switch> Приглашение ввода в режиме User EXEC. Используется для базовых тестов, просмотра системной информации. Выход по команде logout или quit Switch> enable Переход в режим Privileged EXEC. Становятся доступными все команды. Для возвращения в пользовательский режим введите команду disable. Switch# Приглашение ввода в режиме Privileged EXEC. Выход по команде logout или quit Switch# configure terminal Переход в режим конфигурирования. Выход по команде exit либо end. Для выхода можно нажать Ctrl-Z Switch(config)# Приглашение ввода в режиме конфигурирования.
Система справки IOS
Команда Описание Switch# ? Введите знак вопроса чтобы получить список доступных в этом режиме команд Switch# con? configure connect Начните вводить команду и поставьте знак вопроса, чтобы получить список команд, начинающихся с введенных символов. Switch# configure t Switch# configure terminal Введите часть команды и нажмите , чтобы система дописала частично введенную команду (либо вывела список команд, если есть несколько вариантов). Switch> show ? Введите команду, потом пробел, потом знак вопроса, чтобы получить список всех возможных аргументов и ключевых слов данной команды. . Switch> en Switch# conf t Switch(config)# int fa 0/0 Switch(config-if)# Любую команду можно сократить до минимального числа символов, которые еще позволяют однозначно определить команду. Switch(config)# int Vlan 1 Switch(config-if)# shutdown Switch(config-if)# no shutdown Почти у всех команд есть отрицательная форма, которая начинается с NO. Такая команда отменит или удалит введенную основную команду. Стрелка вверх Нажатие стрелки вверх позволяет вернуть предыдущую введенную команду (или более ранние). Стрелка вниз После прокручивания списка введенных команд, нажатие стрелки вниз позволяет вернуть следущую введенную команду (или более поздние). Ctrl-A Переводит курсор в начало введенной строки (аналог кнопки home). Ctrl-E Переводит курсор в конец введенной строки (аналог кнопки end). Ctrl-D Стирает символ, на котором стоит курсор (аналог кнопки delete). Enter Ввод — при постраничном ввыводе прокручивает вниз на одну строку. Space Пробел — при постраничном ввыводе прокручивает вниз на одну страницу. Switch# show run |
Сообщения об ошибках CLI % Ambiguous command: Вы ввели слишком мало символов и IOS не может однозначно определить команду. Введите команду заново (нажмите стрелку вверх), и поставьте в конце знак вопроса, чтобы получить список доступных вариантов. % Incomplete command. Вы не ввели обязательныз ключевых слов или параметров. Введите команду заново (нажмите стрелку вверх), и поставьте в конце знак вопроса, чтобы получить список доступных вариантов. % Invalid input detected at ‘^’ marker. Вы ввели команду неверно. Стрелочка ‘^’ указывает положение ошибки. Введите знак вопроса, чтобы уточнить доступные команды.
Ошибка = % Invalid input detected at ‘^’ marker. = cisco packet tracer — циско пэкет трайсер
![]()
может возникнуть при «копипасте» — копировании (клик правой кнопкой мыши по консоли -> «вставить») комадны в консоль управления маршрутизатором.
если же набрать её самомстоятельно — то всё работает нормально —
у меня такая проблема наблюдалась с
show ip route
На практике,правда, можно столкнуться и с такой ситуацией (решение в другом случае)
Key Words for FKN + antitotal forum (CS VSU):
- неофициальный форум фкн
- ФКН ВГУ Воронеж
- программирование Воронеж
- ВГУ информатика
- ВГУ компьютерных наук
- Log in to post comments
- 38595 reads
Cisco CLI Error: % Invalid input detected at ‘^’ marker
This message is not restricted to a particular CLI Mode or to a particular CLI command or task.
What does this error mean?
This error indicates that we have made an error while typing in a CLI command. This error message is preceded by a line with the single character ‘^’. There may be multiple errors in a line that we have typed in at the CLI. The ‘^’ indicates the first instance of an error in the line typed in.
For example, suppose we were attempting to configure an IP address on a router interface. We attempt to configure it as follows:
Router Console
Router#config t
Router(config)#int gi0/1
Router(config-if)#ip adress 10.100.100.1. 255.255.255.0
Router(config-if)#ip ad ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#
Looking at the command that we have typed in, we can see that we have misspelled the word «address». The ‘^’ under the letter ‘r’ in the word «address» informs us that there is an error at the letter ‘r’.
We can correct the error and type in the command again.
Router Console
Router#config t
Router(config)#int gi0/1
Router(config-if)#ip adress 10.100.100.1. 255.255.255.0
Router(config-if)#ip ad ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#ip address 10.100.100.1. 255.255.255.0
Router(config-if)#ip address 10.100.100.1 ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#
We have corrected the error in the word «address» but we notice that there is another error message. This time we notice that the ip address that we are trying to configure has an extra ‘.’ at the end. The ‘^’ indicates that there is an error at this location in the line that we have typed in.
We will re-enter the command without the extra ‘.’
Router Console
Router#config t
Router(config)#int gi0/1
Router(config-if)#ip adress 10.100.100.1. 255.255.255.0
Router(config-if)#ip ad ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#ip address 10.100.100.1. 255.255.255.0
Router(config-if)#ip address 10.100.100.1 ^
% Invalid input detected at ‘^’ marker.
Router(config-if)#ip address 10.100.100.1 255.255.255.0
Router(config-if)#
This time the command is accepted with no warnings or error messages.
Point to note: There may be multiple errors in a line, but the ‘^’ character appears underneath the first error that is found. All of the errors are not highlighted at the same time.
A common occurence of this error with the «show» command
Take a look at the following example:
Router Console
Router(config)#sh run
Router(config)#s ^
% Invalid input detected at ‘^’ marker.
Router(config)#
We are attempting to run the «show running-config» command. Why do we see an error message instead of the desired output?
Upon further inspection, we realize that we are currently in Global Configuration Mode (as indicated by the word ‘config’ in the CLI prompt). Most of the «show» commands are available in Privileged EXEC Mode (although a large number of them are also available in User EXEC Mode).
In this instance, if we want to see the running configration, we would need to either precede the command with the word «do», or exit back into Privileged EXEC Mode and run the «show run» command.
Router Console
Router(config)#sh run
Router(config)#s ^
% Invalid input detected at ‘^’ marker.
Router(config)#do sh run
Building configuration.
Current confguration: 2440 bytes
!
version 15.5
no service timestamps log datetime msec
no service timestamps debug datetime msec
.
.
Router(config)#
If we run into an «Invalid input detected at ‘^’ marker» error while attempting to run a «show» command we should always check to confirm that we are not in a Configuration Mode.
Remember : The «show running-config» and «show startup-config» commands are only available in Privileged EXEC Mode — they are not available in User EXEC Mode!
Other common occurences of this error
Interface command
If you run into this error while trying to enter the Interface Specific Configuraiton Mode using the interface command, it is possible that the interface label has been incorrectly typed in.
In the following example, the switch only has 26 gigabitethernet interfaces (0/1 to 0/26). We are attempting to configure interface gi 0/27. The ‘^’ character indicates that 0/27 is not a valid interface label.
Switch Console
Switch(config)#interface gigabitethernet 0/27
Router(config)#interface gigabitethernet 0/2 ^
% Invalid input detected at ‘^’ marker.
Switch(config)#
In the following example, we are attempting to configure interface gigabitethernet 3/10 on a switch stack. The stack only consists of 2 physical switches — the range of valid interfaces for the stack is 0/1 — 0/26 and 1/1 — 1/26. Interface gigabitethernet 3/10 is not a valid interface for this switch stack.
Switch Console
Switch(config)#interface gigabitethernet 3/10
Router(config)#interface gigabitethernet ^
% Invalid input detected at ‘^’ marker.
Switch(config)#
Ip address command
If you run into this error while trying to configure an IP address on an interface, make a note of where the ‘^’ character appears. In the following example, the ‘^’ character appears at the beginning of the word «address».
Switch Console
Switch(config)#interface gigabitethernet 0/1
Switch(config-if)#ip address 192.168.0.1 255.255.255.0
Router(config-if)#ip ^
% Invalid input detected at ‘^’ marker.
Switch(config-if)#
The position of the ‘^’ character seems to indicate that the word address is not a valid keyword or parameter in the current command context. We confirm this by entering ‘?’ after the first word of the command as follows:
Switch Console
Switch(config)#interface gigabitethernet 0/1
Switch(config-if)#ip address 192.168.0.1 255.255.255.0
Router(config-if)#ip ^
% Invalid input detected at ‘^’ marker.
Switch(config-if)#ip ?
| . | . |
| arp | Configure ARP features |
| dhcp | Configure DHCP parameters for this interface |
| . | . |
Switch(config-if)#ip
The context sensitive help indicates that the ip address command is not a valid command in the current context. What could be the reason for this? The most likely reason is that we are on a Layer 2 switch attempting to configure an IP address on a Layer 2 interface. IP addresses can only be configured on Layer 3 interfaces.
Want to test your networking skills with hands-on configuration and troubleshooting questions? Try out the Workshops section of this website here: Workshops (Login required).
Read how to use the device simulators on this website here: Workshops — General Instructions

Have a comment, question or feedback? Join the discussion below.
Ryan • 5 months ago
~~Can’t set a IP address on a Switch~~ This is a Level 2 device. I made this mistake, and this is how I solved it.
My mistake was trying to assign an IP address to the Interfaces (ports), and this is not available on a Level 2 interface.
The solution is to create/use a VLAN, and turn on `ip routing` for the VLAN.
Then `int range fa0/1-8` and set the whole range of interfaces (ports). Use `switchport mode access` and `switchport access vlan 10`, once you have selected your range of ports.
go give the VLAN an IP address, if you haven’t already.
Now there is a VLAN connected to the Cisco Switch with an IP address.
Reply • Mark as spam
saad • 1 year ago
Hello ! Please could you explain me how to solve when the commend for example » nhrp unrecognized commend » in cisco packet tracer
«Invalid input detected at ‘^’ marker» error encountered. How to resolve?

When attempting to configure a static route on a router in Packet Tracer, I run into an error where the g0/1 interface part of the code isn’t accepted. What should I check first, or do to resolve this error message I keep getting? I have been following a tutorial, and doing exactly as the educator does- and this command worked for him, but not for me. This probably means it has something to do with the way Packet Tracer is set up, on my end?
2,748 1 1 gold badge 22 22 silver badges 33 33 bronze badges
Базовая настройка Cisco IOS
Для подключения к устройству используйте консольный кабель и программу Hyper Terminal, либо подключитесь по сети используя telnet или SSH. Интерфейс Cisco IOS разделяется на несколько режимов. Доступные вам команды зависят от режима, в котором вы находитесь в данный момент. Для просмотра списка доступных в этом режиме команд введите знак вопроса (?). Начиная сессию связи с устройством, вы обычно попадаете в пользовательский режим выполнения комманд, или user EXEC mode. В этом режиме список команд сильно ограничен. В основном доступно лишь несколько show и clear команд. Чтобы получить доступ ко всем командам, требуется перейти в привилегированный режим (privileged EXEC mode). Переход осуществляется командой enable. Обычно требуется ввести пароль для доступа к привилегированному режиму. Из этого режима можно вводить любые команды либо перейти в режим конфигурирования.
Из режима конфигурирования можно переходить к настройкам интерфейсов, линий доступа, списков доступа или глобальным настройкам. Эти настройки задаются в соответствующих подрежимах либо в глобальном конфигурационном режиме. Все производимые настройки изменяют текущую конфигурацию или running-configuration. Текущая конфигурация теряется при перезагрузке. Если сохранить конфигурацию, то команды записываются в файл startup-configuration и не теряются при перезагрузке устройства. Когда вы включаете маршрутизатор Cisco (подаете питание), сначала он проводит стартовую самодиагностику, power-on self-test или POST. Если она проходит успешно, то начинается загрузка Cisco IOS из флеш памяти (если IOS файл там есть). После загрузки, IOS ищет стартовую конфигурацию – startup-config — она находится в NVRAM. Стартовая конфигурация считывается и применяется, при этом она копируется в оперативную память RAM и называется текущей конфигурацией или running-config. После просмотра информации о загрузке нажмите Enter и вы перейдете к интерфейсу командной строки CLI.
Основные режимы CLI (Command Line Interface)
Switch> Приглашение ввода в режиме User EXEC. Используется для базовых тестов, просмотра системной информации. Выход по команде logout или quit Switch> enable Переход в режим Privileged EXEC. Становятся доступными все команды. Для возвращения в пользовательский режим введите команду disable. Switch# Приглашение ввода в режиме Privileged EXEC. Выход по команде logout или quit Switch# configure terminal Переход в режим конфигурирования. Выход по команде exit либо end. Для выхода можно нажать Ctrl-Z Switch(config)# Приглашение ввода в режиме конфигурирования.
Система справки IOS
Команда Описание Switch# ? Введите знак вопроса чтобы получить список доступных в этом режиме команд Switch# con? configure connect Начните вводить команду и поставьте знак вопроса, чтобы получить список команд, начинающихся с введенных символов. Switch# configure t Switch# configure terminal Введите часть команды и нажмите , чтобы система дописала частично введенную команду (либо вывела список команд, если есть несколько вариантов). Switch> show ? Введите команду, потом пробел, потом знак вопроса, чтобы получить список всех возможных аргументов и ключевых слов данной команды. . Switch> en Switch# conf t Switch(config)# int fa 0/0 Switch(config-if)# Любую команду можно сократить до минимального числа символов, которые еще позволяют однозначно определить команду. Switch(config)# int Vlan 1 Switch(config-if)# shutdown Switch(config-if)# no shutdown Почти у всех команд есть отрицательная форма, которая начинается с NO. Такая команда отменит или удалит введенную основную команду. Стрелка вверх Нажатие стрелки вверх позволяет вернуть предыдущую введенную команду (или более ранние). Стрелка вниз После прокручивания списка введенных команд, нажатие стрелки вниз позволяет вернуть следущую введенную команду (или более поздние). Ctrl-A Переводит курсор в начало введенной строки (аналог кнопки home). Ctrl-E Переводит курсор в конец введенной строки (аналог кнопки end). Ctrl-D Стирает символ, на котором стоит курсор (аналог кнопки delete). Enter Ввод — при постраничном ввыводе прокручивает вниз на одну строку. Space Пробел — при постраничном ввыводе прокручивает вниз на одну страницу. Switch# show run |
Сообщения об ошибках CLI % Ambiguous command: Вы ввели слишком мало символов и IOS не может однозначно определить команду. Введите команду заново (нажмите стрелку вверх), и поставьте в конце знак вопроса, чтобы получить список доступных вариантов. % Incomplete command. Вы не ввели обязательныз ключевых слов или параметров. Введите команду заново (нажмите стрелку вверх), и поставьте в конце знак вопроса, чтобы получить список доступных вариантов. % Invalid input detected at ‘^’ marker. Вы ввели команду неверно. Стрелочка ‘^’ указывает положение ошибки. Введите знак вопроса, чтобы уточнить доступные команды.