Posts

Showing posts from January, 2025

Cisco ISE important Command

##################### Create user on ise ##################### username <Username> password plain <Password>  role admin   #####################  Pathc install ##################### Syntax: patch install <File_Name> <Repository_Name> patch install ise-patchbundle-3.2.0.542-Patch7-24100105.SPA.x86_64.tar.gz LOCAL ##################### ISE SHOW COMMAND ##################### ise-node1/admin# show backup ?   history  Display backup history   status   Display backup status ise-node1/admin# show backup history ise-node1/admin#  show backup status ##################### Creat ISE Repository GUI ##################### GUI  Name for backup: SFTP backup type: local / FTP / SFTP Server name: sftp01 Path to backup folder: Root/ISE/Backup/ CLI - add host key (assume 10.10.10.10 ftp server ip.) crypto host_key add host 10.10.10.10 crypto host_key add host sftp01 Note: Without adding host key, ISE my show error while validati...

How to install Deepseek R1 local machine.

  DeepSeek-R1 DeepSeek is a Chinese AI company that develops open-source large language models located in Hangzhou, Zhejiang, China. It is open source, you can run locally on your machine using the Ollama platform:   1. Install Ollama Ollama = open-source tool that facilitates running Natural Language Processing models locally.   We can download Ollama from: https://ollama.com/download   Select version compatible with your operating system e.g Windows, macOS,   Linux.   To verify ollama is installed on your machine, open powersheel and type command. PS C:\Users\Admin>  ollama list   Since we have not installed DeepSeek it will show empty list.   2. Download   & install DeepSeek-R1 Model From command prompt run following command Syntex: PS C:\Users\Admin> ollama pull <DeepSeek Version name>   E.G if we want to download deepseek-r1:7b, please check system requirement before c...