|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G) - 2 pending changes
2
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update, 1 requires restart
3
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: nas]
Explorer Section: screenpipe [SSH: nas]
SCREENPIPE [SSH: NAS]
#recycle
app
data
pipes
.gitignore
app_settings.json
archive.db
db.sqlite
screenpipe_sync.sh
screenpipe.db
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
app_settings.json, Editor Group 1
screenpipe_sync.sh, Editor Group 1
db.sqlite-shm, preview, Editor Group 1
The editor could not be opened because the file was not found.
Create File
lets add ability to jump…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: nas
SSH: nas
screenpipe (Git) - master*, Checkout Branch/Tag...
master*
screenpipe (Git) - Synchronize Changes
No Problems
0
0
No Ports Forwarded
0
Notifications
Signed out
Signed out
Screen Reader Optimized
Info: Downloading VS Code Server...
lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time
Session history
New session
Message actions
This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.
Summary:
1. Primary Request and Intent:
The user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:
- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.
- **Q2**: AND combination search (term1 + term2 must both appear) → Added "AND also" input field.
- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.
- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.
- **Q5**: "still the same" (container not picking up config) → Explained `up -d` vs `restart`.
- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.
- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.
- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.
- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.
2. Key Technical Concepts:
- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.
- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.
- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.
- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.
- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.
- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.
- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.
- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.
- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.
- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.
- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\#recycle/`.
3. Files and Code Sections:
- **`/volume1/screenpipe/app/main.py`**
- Added `/api/apps` endpoint (all unique app names from frames table)
- Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)
- `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: "..."}`
- Key snippet:
```python
@app.get("/api/timetable"
)
async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):
...
rows = conn.execute(f"""
SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,
f.offset_index, f.snapshot_path,
vc.file_path AS video_path, vc.fps AS video_fps
FROM frames f
JOIN video_chunks vc ON f.video_chunk_id = vc.id
WHERE f.timestamp >= ? AND f.timestamp < ?
AND f.video_chunk_id IS NOT NULL {dev_clause}
ORDER BY f.timestamp
""", params).fetchall()
# seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)
```
- **`/volume1/screenpipe/app/docker-compose.yml`**
- Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`
- Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`
- screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`
- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)
- **Search enhancements**:
- Added `id="sq2"` "AND also" input between search-row1 and search-row2
- Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id="msOnlyApps"`, `id="msSkipApps"`)
- Updated `buildUrl()` to combine `q + " " + q2` and convert times with `localTimeToUtc()`
- Added `fmtDateTime(ts)` showing "Apr 20 14:08" format
- Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC
- Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`
- **Timetable tab** (new page):
- Tab button added between Work Report and AI Summary
- `showPage` array updated: `['activity','search','audio','report','timetable','summary']`
- `refresh()` calls `loadTimetable()` when on timetable page
- **Timetable CSS** (key styles):
```css
.tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }
.tt-inner { position:relative; height:52px; } /* width set dynamically */
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
.tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }
.tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }
```
- **Timetable JS state variables**:
```javascript
let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;
let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;
const _ttAppColors = {};
const TT_ZOOMS = [1, 2, 4, 8, 16, 32];
const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};
```
- **Key JS functions**:
- `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders
- `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead
- `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)
- `ttOverviewClick(e)` — scrolls timeline + seeks video
- `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`
- `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`
- `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video
- `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked
- `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`
- `_ttShowNow(f)` — updates screenshot thumbnail + now-text div
- `ttSyncBtn()` — syncs play/pause button text
- Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom
- **`/volume1/screenpipe/.gitignore`**
```
*.db, *.sqlite, *.sqlite-shm, *.sqlite-wal
data/, \#recycle/,
@eaDir/
app_settings.json, app/.env
__pycache__/, *.pyc, .DS_Store
```
4. Errors and Fixes:
- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\#recycle/`. Also had to `git rm --cached "#recycle/desktop.ini"` to unstage it.
- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.
- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.
- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.
- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.
5. Problem Solving:
- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.
- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.
- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).
- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.
6. All User Messages:
- "do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps."
- "doi I need to restart?"
- "there is sudo docker compose"
- "no still the same"
- "add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git"
- "just do it" (re: git push)
- "how to make sure data in :8767 are accurate and point to archive.db"
- "I can't see older than 16th there should 21st of april. In http://[IP_ADDRESS]:8766/ I can see all but not on sqlite viewer http://[IP_ADDRESS]:8767"
- "ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive"
- [docker compose output showing orphan container error]
- "looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast"
- "lets make the playing speed more than 8x"
- "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
7. Pending Tasks:
- **Playback speed fix** (in progress, partially done):
- Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` inside `ttInner` HTML
- Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions
- Update speed select `onchange` to call `ttSetSpeed(+this.value)`
- Add 64× option to speed select
- Update `_ttMovePlayhead` to also update `ttPlayheadTime` label
- Update `ttSyncBtn` to start/stop timer based on play state + speed
- Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)
- Rebuild Docker image after changes
8. Current Work:
Working on fixing two issues with the Timetable tab:
1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.
2. **Timeline position indicator**: Playhead not prominent enough.
**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:
```css
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
```
Session was interrupted by summary request after this CSS edit, mid-implementation.
9. Optional Next Step:
Continuing the fix for: "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
The next steps in order are:
1. Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)
2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`
3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)
4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option
5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer
6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`
If you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl
Continue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with "I'll continue" or similar. Pick up the last task as if the break never happened.
Thinking
Thinking
Bash
Find timetable speed and playhead related code
IN
grep -n "tt-playhead\|ttPlayhead\|ttInner\|_ttMovePlayhead\|ttSetSpeed\|_ttStartSpeed\|_ttStopSpeed\|ttSyncBtn\|playbackRate\|speed.*select\|spdSel\|ttSpeed" /volume1/screenpipe/app/static/index.html | head -80
Copy code to clipboard
OUT
207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
580: <div class="tt-inner" id="ttInner" onclick="ttTimelineClick(event)">
583: <div class="tt-playhead" id="ttPlayhead"></div>
598: onpause="ttSyncBtn()"
599: onplay="ttSyncBtn()">
607: <select id="ttSpeed" onchange="document.getElementById('ttVideo').playbackRate=+this.value">
1624: document.getElementById('ttInner').style.width = '100%';
1632: document.getElementById('ttPlayhead').style.display = 'none';
1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';
1700: const inner = document.getElementById('ttInner');
1710: const inner = document.getElementById('ttInner');
1718: const inner = document.getElementById('ttInner');
1750: _ttMovePlayhead(new Date(best.ts).getTime());
1772: _ttMovePlayhead(new Date(best.ts).getTime());
1791:function _ttMovePlayhead(tsMs) {
1792: const ph = document.getElementById('ttPlayhead');
1802: const ph = document.getElementById('ttPlayhead');
1805: const inner = document.getElementById('ttInner');
1819:function ttSyncBtn() {
Read
index.html
index.html
(lines 576-625)
Read
index.html
index.html
(lines 1786-1865)
Thinking
Thinking
Bash
Find chunk loading and playhead update functions
IN
grep -n "ttUpdatePlayhead\|ttNextChunk\|ttLoadChunk\|_ttCurChunk\|_ttChunks\|_ttFrames" /volume1/screenpipe/app/static/index.html | head -50
Copy code to clipboard
OUT
596: onended="ttNextChunk()"
597: ontimeupdate="ttUpdatePlayhead()"
1569:let _ttFrames = [];
1570:let _ttChunks = [];
1571:let _ttCurChunk = -1;
1607: _ttFrames = data.frames;
1609: for (const f of _ttFrames) {
1613: _ttChunks = [...chunkMap.values()];
1614: _ttCurChunk = -1;
1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();
1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();
1620: for (const f of _ttFrames) _ttColor(f.app);
1640: for (const f of _ttFrames) {
1736: if (!_ttFrames.length) return;
1737: let best = _ttFrames[0], minDiff = Infinity;
1738: for (const f of _ttFrames) {
1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);
1744: _ttCurChunk = ci;
1753:function ttNextChunk() {
1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;
1755: _ttCurChunk++;
1757: video.src = _ttChunks[_ttCurChunk][0].video_url;
1762:function ttUpdatePlayhead() {
1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;
1765: const chunk = _ttChunks[_ttCurChunk];
Read
index.html
index.html
(lines 1754-1793)
Thinking
Thinking
Read
index.html
index.html
(lines 1701-1760)
Thinking
Thinking
Read
index.html
index.html
(lines 1561-1640)
Thinking
Thinking
Bash
Find time formatting functions
IN
grep -n "function fmtTime\|function fmtDate\|function _fmt\|localTimeToUtc\|fmtDateTime" /volume1/screenpipe/app/static/index.html | head -20
Copy code to clipboard
OUT
1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;
1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;
1153: let meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;
1166: meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class="badge ${r.is_input_device?'mic':'sys'}">${r.is_input_device?'MIC':'SYS'}</span>`;
1307:function fmtTime(ts) {
1312:function fmtDateTime(ts) {
1320:function localTimeToUtc(timeStr) {
1778:function _fmtSec(s) {
1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;
Read
index.html
index.html
(lines 1308-1327)
Thinking
Thinking
Now I have everything I need. I'll implement the frame-by-frame timer system that replaces
video.playbackRate
with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:
Edit
index.html
index.html
Added 1 line
Edit...
|
Code
|
lets add ability to jump… — screenpipe [SSH: nas]
|
NULL
|
80985
|
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G) - 2 pending changes
2
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update, 1 requires restart
3
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: nas]
Explorer Section: screenpipe [SSH: nas]
SCREENPIPE [SSH: NAS]
#recycle
app
data
pipes
.gitignore
app_settings.json
archive.db
db.sqlite
screenpipe_sync.sh
screenpipe.db
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
app_settings.json, Editor Group 1
screenpipe_sync.sh, Editor Group 1
db.sqlite-shm, preview, Editor Group 1
The editor could not be opened because the file was not found.
Create File
lets add ability to jump…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: nas
SSH: nas
screenpipe (Git) - master*, Checkout Branch/Tag...
master*
screenpipe (Git) - Synchronize Changes
No Problems
0
0
No Ports Forwarded
0
Notifications
Signed out
Signed out
Screen Reader Optimized
Info: Downloading VS Code Server...
lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time
Session history
New session
Message actions
This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.
Summary:
1. Primary Request and Intent:
The user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:
- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.
- **Q2**: AND combination search (term1 + term2 must both appear) → Added "AND also" input field.
- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.
- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.
- **Q5**: "still the same" (container not picking up config) → Explained `up -d` vs `restart`.
- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.
- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.
- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.
- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.
2. Key Technical Concepts:
- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.
- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.
- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.
- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.
- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.
- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.
- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.
- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.
- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.
- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.
- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\#recycle/`.
3. Files and Code Sections:
- **`/volume1/screenpipe/app/main.py`**
- Added `/api/apps` endpoint (all unique app names from frames table)
- Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)
- `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: "..."}`
- Key snippet:
```python
@app.get("/api/timetable"
)
async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):
...
rows = conn.execute(f"""
SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,
f.offset_index, f.snapshot_path,
vc.file_path AS video_path, vc.fps AS video_fps
FROM frames f
JOIN video_chunks vc ON f.video_chunk_id = vc.id
WHERE f.timestamp >= ? AND f.timestamp < ?
AND f.video_chunk_id IS NOT NULL {dev_clause}
ORDER BY f.timestamp
""", params).fetchall()
# seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)
```
- **`/volume1/screenpipe/app/docker-compose.yml`**
- Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`
- Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`
- screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`
- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)
- **Search enhancements**:
- Added `id="sq2"` "AND also" input between search-row1 and search-row2
- Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id="msOnlyApps"`, `id="msSkipApps"`)
- Updated `buildUrl()` to combine `q + " " + q2` and convert times with `localTimeToUtc()`
- Added `fmtDateTime(ts)` showing "Apr 20 14:08" format
- Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC
- Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`
- **Timetable tab** (new page):
- Tab button added between Work Report and AI Summary
- `showPage` array updated: `['activity','search','audio','report','timetable','summary']`
- `refresh()` calls `loadTimetable()` when on timetable page
- **Timetable CSS** (key styles):
```css
.tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }
.tt-inner { position:relative; height:52px; } /* width set dynamically */
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
.tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }
.tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }
```
- **Timetable JS state variables**:
```javascript
let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;
let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;
const _ttAppColors = {};
const TT_ZOOMS = [1, 2, 4, 8, 16, 32];
const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};
```
- **Key JS functions**:
- `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders
- `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead
- `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)
- `ttOverviewClick(e)` — scrolls timeline + seeks video
- `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`
- `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`
- `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video
- `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked
- `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`
- `_ttShowNow(f)` — updates screenshot thumbnail + now-text div
- `ttSyncBtn()` — syncs play/pause button text
- Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom
- **`/volume1/screenpipe/.gitignore`**
```
*.db, *.sqlite, *.sqlite-shm, *.sqlite-wal
data/, \#recycle/,
@eaDir/
app_settings.json, app/.env
__pycache__/, *.pyc, .DS_Store
```
4. Errors and Fixes:
- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\#recycle/`. Also had to `git rm --cached "#recycle/desktop.ini"` to unstage it.
- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.
- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.
- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.
- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.
5. Problem Solving:
- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.
- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.
- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).
- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.
6. All User Messages:
- "do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps."
- "doi I need to restart?"
- "there is sudo docker compose"
- "no still the same"
- "add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git"
- "just do it" (re: git push)
- "how to make sure data in :8767 are accurate and point to archive.db"
- "I can't see older than 16th there should 21st of april. In http://[IP_ADDRESS]:8766/ I can see all but not on sqlite viewer http://[IP_ADDRESS]:8767"
- "ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive"
- [docker compose output showing orphan container error]
- "looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast"
- "lets make the playing speed more than 8x"
- "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
7. Pending Tasks:
- **Playback speed fix** (in progress, partially done):
- Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` inside `ttInner` HTML
- Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions
- Update speed select `onchange` to call `ttSetSpeed(+this.value)`
- Add 64× option to speed select
- Update `_ttMovePlayhead` to also update `ttPlayheadTime` label
- Update `ttSyncBtn` to start/stop timer based on play state + speed
- Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)
- Rebuild Docker image after changes
8. Current Work:
Working on fixing two issues with the Timetable tab:
1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.
2. **Timeline position indicator**: Playhead not prominent enough.
**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:
```css
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
```
Session was interrupted by summary request after this CSS edit, mid-implementation.
9. Optional Next Step:
Continuing the fix for: "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
The next steps in order are:
1. Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)
2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`
3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)
4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option
5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer
6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`
If you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl
Continue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with "I'll continue" or similar. Pick up the last task as if the break never happened.
Thinking
Thinking
Bash
Find timetable speed and playhead related code
IN
grep -n "tt-playhead\|ttPlayhead\|ttInner\|_ttMovePlayhead\|ttSetSpeed\|_ttStartSpeed\|_ttStopSpeed\|ttSyncBtn\|playbackRate\|speed.*select\|spdSel\|ttSpeed" /volume1/screenpipe/app/static/index.html | head -80
Copy code to clipboard
OUT
207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
580: <div class="tt-inner" id="ttInner" onclick="ttTimelineClick(event)">
583: <div class="tt-playhead" id="ttPlayhead"></div>
598: onpause="ttSyncBtn()"
599: onplay="ttSyncBtn()">
607: <select id="ttSpeed" onchange="document.getElementById('ttVideo').playbackRate=+this.value">
1624: document.getElementById('ttInner').style.width = '100%';
1632: document.getElementById('ttPlayhead').style.display = 'none';
1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';
1700: const inner = document.getElementById('ttInner');
1710: const inner = document.getElementById('ttInner');
1718: const inner = document.getElementById('ttInner');
1750: _ttMovePlayhead(new Date(best.ts).getTime());
1772: _ttMovePlayhead(new Date(best.ts).getTime());
1791:function _ttMovePlayhead(tsMs) {
1792: const ph = document.getElementById('ttPlayhead');
1802: const ph = document.getElementById('ttPlayhead');
1805: const inner = document.getElementById('ttInner');
1819:function ttSyncBtn() {
Read
index.html
index.html
(lines 576-625)
Read
index.html
index.html
(lines 1786-1865)
Thinking
Thinking
Bash
Find chunk loading and playhead update functions
IN
grep -n "ttUpdatePlayhead\|ttNextChunk\|ttLoadChunk\|_ttCurChunk\|_ttChunks\|_ttFrames" /volume1/screenpipe/app/static/index.html | head -50
Copy code to clipboard
OUT
596: onended="ttNextChunk()"
597: ontimeupdate="ttUpdatePlayhead()"
1569:let _ttFrames = [];
1570:let _ttChunks = [];
1571:let _ttCurChunk = -1;
1607: _ttFrames = data.frames;
1609: for (const f of _ttFrames) {
1613: _ttChunks = [...chunkMap.values()];
1614: _ttCurChunk = -1;
1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();
1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();
1620: for (const f of _ttFrames) _ttColor(f.app);
1640: for (const f of _ttFrames) {
1736: if (!_ttFrames.length) return;
1737: let best = _ttFrames[0], minDiff = Infinity;
1738: for (const f of _ttFrames) {
1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);
1744: _ttCurChunk = ci;
1753:function ttNextChunk() {
1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;
1755: _ttCurChunk++;
1757: video.src = _ttChunks[_ttCurChunk][0].video_url;
1762:function ttUpdatePlayhead() {
1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;
1765: const chunk = _ttChunks[_ttCurChunk];
Read
index.html
index.html
(lines 1754-1793)
Thinking
Thinking
Read
index.html
index.html
(lines 1701-1760)
Thinking
Thinking
Read
index.html
index.html
(lines 1561-1640)
Thinking
Thinking
Bash
Find time formatting functions
IN
grep -n "function fmtTime\|function fmtDate\|function _fmt\|localTimeToUtc\|fmtDateTime" /volume1/screenpipe/app/static/index.html | head -20
Copy code to clipboard
OUT
1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;
1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;
1153: let meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;
1166: meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class="badge ${r.is_input_device?'mic':'sys'}">${r.is_input_device?'MIC':'SYS'}</span>`;
1307:function fmtTime(ts) {
1312:function fmtDateTime(ts) {
1320:function localTimeToUtc(timeStr) {
1778:function _fmtSec(s) {
1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;
Read
index.html
index.html
(lines 1308-1327)
Thinking
Thinking
Now I have everything I need. I'll implement the frame-by-frame timer system that replaces
video.playbackRate
with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:
Edit
index.html
index.html
Added 1 line
Edit...
|
Code
|
lets add ability to jump… — screenpipe [SSH: nas]
|
NULL
|
80984
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80983
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80982
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80981
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80980
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80979
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80978
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80977
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS
MORE
Netinstall:
Win64
Win64
Win32
Win32...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80976
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80975
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80974
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS
MORE
Netinstall:
Win64
Win64
Win32
Win32
Linux CLI
Linux CLI
More in
download...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80973
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80972
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS
MORE
Netinstall:
Win64
Win64
Win32
Win32
Linux CLI
Linux CLI
More in
download
download
page
Go to home page
SUBSCRIBE TO OUR NEWSLETTER
SUBSCRIBE TO OUR NEWSLETTER
HARDWARE...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80971
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS
MORE
Netinstall:
Win64
Win64
Win32
Win32
Linux CLI
Linux CLI
More in
download
download...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80970
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS
MORE
Netinstall:
Win64
Win64
Win32
Win32
Linux CLI
Linux CLI
More in
download
download
page
Go to home page
SUBSCRIBE TO OUR NEWSLETTER
SUBSCRIBE TO OUR NEWSLETTER...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80969
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · CRS304-4XG-IN
MikroTik · CRS304-4XG-IN
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
CRS304-4XG-IN
CRS304-4XG-IN
CRS304-4XG-IN
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
4 x 10G Ethernet ports
1Gbit management port
Durable lightweight enclosure
Massive fanless heat sink
RouterOS v7 and SwOS dual-boot
4x ways of powering
Watch Video
INTRODUCING THE CRS304-4XG-IN
INTRODUCING THE CRS304-4XG-IN
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
COMPACT YET HIGHLY CAPABLE 10 GIGABIT ETHERNET SWITCH
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
DESIGNED TO SIMPLIFY YOUR NETWORK SETUP ROUTINE
COOLING
INNOVATIVE DESIGN MEETS SILENT OPERATION
INNOVATIVE DESIGN MEETS SILENT OPERATION
The CRS304 features an enclosure that doubles as a robust, lightweight heat sink, eliminating the need for active cooling. This fanless design ensures silent operation, making it ideal for any environment where noise is a concern – offices, libraries, or even your bedroom homelab! The sturdy form-factor provides a premium feel, balancing comfortable weight and durability, all at an accessible price point
MOUNTING
VERSATILE MOUNTING OPTIONS
VERSATILE MOUNTING OPTIONS
This switch includes a convenient DIN rail mount on the sideand standard screw attachment points on the back, allowing for seamless integration literally anywhere. Furthermore, the side DIN rail mount can be moved to the back of the switch.
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
MULTIPLE POWERING OPTIONS FOR ULTIMATE RELIABILITY
FOUR DIFFERENT POWER INPUT OPTIONS
FOUR DIFFERENT POWER INPUT OPTIONS
Power redundancy is a key feature of the CRS304. It offers four different power input options: two DC jacks, a 2-pin terminal, and PoE-in. The switch automatically selects the power source with the highest voltage, ensuring uninterrupted operation.
SMALL FRAME, BIG GAME
SMALL FRAME, BIG GAME
Powered by a dual-core ARM CPU and the mighty Marvell Prestera switch chip, the CRS304 delivers exceptional performance for its tiny size. Port-to-port forwarding, broadcast storm control, MAC filtering, VLANs, traffic mirroring, bandwidth limitations, and even some Layer 3 hardware offloading – not a problem for the CRS304-4XG-IN!
YOUR BACKPACK SERVER ROOM
YOUR BACKPACK SERVER ROOM
The CRS304’s small form factor and enhanced durability makes it an ideal choice for both stationary and mobile applications. Place it on your desk or keep it in your backpack for on-the-go networking – this is a must-have switch for any network administrator.
Specification
Specification
SPECIFICATIONS
Product code
CRS304-4XG-IN
Suggested price
$199.00
Architecture
ARM 64bit
CPU
98DX2528
CPU core count
2
CPU nominal frequency
1200 MHz
CPU Threads count
2
Switch chip model
98DX2528
RouterOS license
5
Operating System
RouterOS v7
Size of RAM
512 MB
Storage size
32 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
4
(DC jack, PoE-IN, 2-pin terminal)
DC jack input Voltage
12-57 V / 12-57 V
2-pin terminal input Voltage
12-57 V
Max power consumption
21 W
Max power consumption without attachments
15 W
PoE in
802.3af/at
Cooling type
Passive
PoE in input Voltage
36-57 V
ETHERNET
10/100/1000 Ethernet ports
1
Number of 1G/2.5G/5G/10G Ethernet ports
4
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
20
INCLUDED PARTS
Image of 48 V 0.95 A power adapter 48 V 0.95 A power adapter
48 V 0.95 A power adapter
Image of Fastening set with DIN Fastening set with DIN
Fastening set with DIN
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
Safety and regulatory information
Safety and regulatory information
Block Diagram
Block Diagram
Declaration of Conformity
Declaration of Conformity
Dimensions
Dimensions
User manual
User manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM64
devices.
SYSTEM PACKAGE
RouterOS
RouterOS
MORE...
|
Firefox
|
MikroTik · CRS304-4XG-IN — Personal
|
mikrotik.com/product/crs304_4xg_in
|
80968
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80967
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80966
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80965
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80964
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+
40G
ROS v7
One of our faster switches for the most demanding setups.
Product page for CRS326-4C+20G+2Q+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80963
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80962
|
|
Product page for CRS317-1G-16S+RM
DXP4800PLUS-B5F8 Product page for CRS317-1G-16S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80961
|
|
Product page for CRS804 DDQ
DXP4800PLUS-B5F8
Inbox Product page for CRS804 DDQ
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80960
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+
40G
ROS v7
One of our faster switches for the most demanding setups.
Product page for CRS326-4C+20G+2Q+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80959
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Hardware
MikroTik · Hardware
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
Our products are used by Internet service providers, businesses and individual users to build network infrastructure around the world.
Image of Ethernet Routers ETHERNET ROUTERS
ETHERNET ROUTERS
Image of Switches SWITCHES
SWITCHES
Image of Wireless Systems WIRELESS SYSTEMS
WIRELESS SYSTEMS
Image of Wireless Home & Office WIRELESS HOME & OFFICE
WIRELESS HOME & OFFICE
Image of LTE/5G LTE/5G
LTE/5G
Image of IoT Products IOT PRODUCTS
IOT PRODUCTS
Image of 60GHz Products 60GHZ PRODUCTS
60GHZ PRODUCTS
Image of RouterBOARD ROUTERBOARD
ROUTERBOARD
MORE
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
Go to home page
SUBSCRIBE TO OUR NEWSLETTER
SUBSCRIBE TO OUR NEWSLETTER
HARDWARE
New
New
Search
Search
Ethernet routers
Ethernet routers
Switches
Switches
Wireless systems
Wireless systems
Wireless for home and office
Wireless for home and office
LTE/5G products
LTE/5G products
IoT products
IoT products
60 GHz products
60 GHz products
RouterBOARD
RouterBOARD
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
SOFTWARE
Downloads
Downloads
Changelogs
Changelogs
RouterOS
RouterOS
WinBox
WinBox
Mobile apps
Mobile apps
Back to Home
Back to Home
Connectivity
Connectivity
DISTRIBUTORS
Buy something (find a distributor)
Buy something (find a distributor)
Sell something (become a distributor)
Sell something (become a distributor)
Made for MikroTik
Made for MikroTik
SUPPORT
Documentation
Documentation
Consultants
Consultants
Forum
Forum
Help
Help
Security
Security
Warranty
Warranty
TRAINING
About
About
Schedule
Schedule
Training centers & trainers
Training centers & trainers
Academies
Academies
Train the trainer
Train the trainer
Certificate Search
Certificate Search
ABOUT
Contacts
Contacts
Company
Company
Our Logo
Our Logo
Vacancies
Vacancies
Write email to [EMAIL]
Go to Mikrotik TikTube
Go to Mikrotik YouTube channel
Go to Mikrotik Mastodon page
Go to Mikrotik Facebook page
Privacy Policy
Privacy Policy
mikrotik.com/products/group/switches...
|
Firefox
|
MikroTik · Hardware — Personal
|
mikrotik.com/hardware
|
80958
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Hardware
MikroTik · Hardware
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
Our products are used by Internet service providers, businesses and individual users to build network infrastructure around the world.
Image of Ethernet Routers ETHERNET ROUTERS
ETHERNET ROUTERS
Image of Switches SWITCHES
SWITCHES
Image of Wireless Systems WIRELESS SYSTEMS
WIRELESS SYSTEMS
Image of Wireless Home & Office WIRELESS HOME & OFFICE
WIRELESS HOME & OFFICE
Image of LTE/5G LTE/5G
LTE/5G
Image of IoT Products IOT PRODUCTS
IOT PRODUCTS
Image of 60GHz Products 60GHZ PRODUCTS
60GHZ PRODUCTS
Image of RouterBOARD ROUTERBOARD
ROUTERBOARD
MORE
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
Go to home page
SUBSCRIBE TO OUR NEWSLETTER
SUBSCRIBE TO OUR NEWSLETTER
HARDWARE
New
New
Search
Search
Ethernet routers
Ethernet routers
Switches
Switches
Wireless systems
Wireless systems
Wireless for home and office
Wireless for home and office
LTE/5G products
LTE/5G products
IoT products
IoT products
60 GHz products
60 GHz products
RouterBOARD
RouterBOARD
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
SOFTWARE
Downloads
Downloads
Changelogs
Changelogs
RouterOS
RouterOS
WinBox
WinBox
Mobile apps
Mobile apps
Back to Home
Back to Home
Connectivity
Connectivity
DISTRIBUTORS
Buy something (find a distributor)
Buy something (find a distributor)
Sell something (become a distributor)
Sell something (become a distributor)
Made for MikroTik
Made for MikroTik
SUPPORT
Documentation
Documentation
Consultants
Consultants
Forum
Forum
Help
Help
Security
Security
Warranty
Warranty
TRAINING
About
About
Schedule
Schedule
Training centers & trainers
Training centers & trainers
Academies
Academies
Train the trainer
Train the trainer
Certificate Search
Certificate Search
ABOUT
Contacts
Contacts
Company
Company
Our Logo
Our Logo
Vacancies
Vacancies
Write email to [EMAIL]
Go to Mikrotik TikTube
Go to Mikrotik YouTube channel
Go to Mikrotik Mastodon page
Go to Mikrotik Facebook page
Privacy Policy
Privacy Policy
mikrotik.com/products/group/switches...
|
Firefox
|
MikroTik · Hardware — Personal
|
mikrotik.com/hardware
|
80957
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Hardware
MikroTik · Hardware
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
Our products are used by Internet service providers, businesses and individual users to build network infrastructure around the world.
Image of Ethernet Routers ETHERNET ROUTERS
ETHERNET ROUTERS
Image of Switches SWITCHES
SWITCHES
Image of Wireless Systems WIRELESS SYSTEMS
WIRELESS SYSTEMS
Image of Wireless Home & Office WIRELESS HOME & OFFICE
WIRELESS HOME & OFFICE
Image of LTE/5G LTE/5G
LTE/5G
Image of IoT Products IOT PRODUCTS
IOT PRODUCTS
Image of 60GHz Products 60GHZ PRODUCTS
60GHZ PRODUCTS
Image of RouterBOARD ROUTERBOARD
ROUTERBOARD
MORE
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
Go to home page
SUBSCRIBE TO OUR NEWSLETTER
SUBSCRIBE TO OUR NEWSLETTER
HARDWARE
New
New
Search
Search
Ethernet routers
Ethernet routers
Switches
Switches
Wireless systems
Wireless systems
Wireless for home and office
Wireless for home and office
LTE/5G products
LTE/5G products
IoT products
IoT products
60 GHz products
60 GHz products
RouterBOARD
RouterBOARD
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
SOFTWARE
Downloads
Downloads
Changelogs
Changelogs
RouterOS
RouterOS
WinBox
WinBox
Mobile apps
Mobile apps
Back to Home
Back to Home
Connectivity
Connectivity
DISTRIBUTORS
Buy something (find a distributor)
Buy something (find a distributor)
Sell something (become a distributor)
Sell something (become a distributor)
Made for MikroTik
Made for MikroTik
SUPPORT
Documentation
Documentation
Consultants
Consultants
Forum
Forum
Help
Help
Security
Security
Warranty
Warranty
TRAINING
About
About
Schedule
Schedule
Training centers & trainers
Training centers & trainers
Academies
Academies
Train the trainer
Train the trainer
Certificate Search
Certificate Search
ABOUT
Contacts
Contacts
Company
Company
Our Logo
Our Logo
Vacancies
Vacancies
Write email to [EMAIL]
Go to Mikrotik TikTube
Go to Mikrotik YouTube channel
Go to Mikrotik Mastodon page
Go to Mikrotik Facebook page
Privacy Policy
Privacy Policy
mikrotik.com/products/group/routerboard...
|
Firefox
|
MikroTik · Hardware — Personal
|
mikrotik.com/hardware
|
80956
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Hardware
MikroTik · Hardware
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
Our products are used by Internet service providers, businesses and individual users to build network infrastructure around the world.
Image of Ethernet Routers ETHERNET ROUTERS
ETHERNET ROUTERS
Image of Switches SWITCHES
SWITCHES
Image of Wireless Systems WIRELESS SYSTEMS
WIRELESS SYSTEMS
Image of Wireless Home & Office WIRELESS HOME & OFFICE
WIRELESS HOME & OFFICE
Image of LTE/5G LTE/5G
LTE/5G
Image of IoT Products IOT PRODUCTS
IOT PRODUCTS
Image of 60GHz Products 60GHZ PRODUCTS
60GHZ PRODUCTS
Image of RouterBOARD ROUTERBOARD
ROUTERBOARD
MORE
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
Go to home page
SUBSCRIBE TO OUR NEWSLETTER
SUBSCRIBE TO OUR NEWSLETTER
HARDWARE
New
New
Search
Search
Ethernet routers
Ethernet routers
Switches
Switches
Wireless systems
Wireless systems
Wireless for home and office
Wireless for home and office
LTE/5G products
LTE/5G products
IoT products
IoT products
60 GHz products
60 GHz products
RouterBOARD
RouterBOARD
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
SOFTWARE
Downloads
Downloads
Changelogs
Changelogs
RouterOS
RouterOS
WinBox
WinBox
Mobile apps
Mobile apps
Back to Home
Back to Home
Connectivity
Connectivity
DISTRIBUTORS
Buy something (find a distributor)
Buy something (find a distributor)
Sell something (become a distributor)
Sell something (become a distributor)
Made for MikroTik
Made for MikroTik
SUPPORT
Documentation
Documentation
Consultants
Consultants
Forum
Forum
Help
Help
Security
Security
Warranty
Warranty
TRAINING
About
About
Schedule
Schedule
Training centers & trainers
Training centers & trainers
Academies
Academies
Train the trainer
Train the trainer
Certificate Search
Certificate Search
ABOUT
Contacts
Contacts
Company
Company
Our Logo
Our Logo
Vacancies
Vacancies
Write email to [EMAIL]
Go to Mikrotik TikTube
Go to Mikrotik YouTube channel
Go to Mikrotik Mastodon page
Go to Mikrotik Facebook page
Privacy Policy
Privacy Policy
mikrotik.com/products/group/lte-5g-products...
|
Firefox
|
MikroTik · Hardware — Personal
|
mikrotik.com/hardware
|
80955
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Hardware
MikroTik · Hardware
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
Our products are used by Internet service providers, businesses and individual users to build network infrastructure around the world.
Image of Ethernet Routers ETHERNET ROUTERS
ETHERNET ROUTERS
Image of Switches SWITCHES
SWITCHES
Image of Wireless Systems WIRELESS SYSTEMS
WIRELESS SYSTEMS
Image of Wireless Home & Office WIRELESS HOME & OFFICE
WIRELESS HOME & OFFICE
Image of LTE/5G LTE/5G
LTE/5G
Image of IoT Products IOT PRODUCTS
IOT PRODUCTS
Image of 60GHz Products 60GHZ PRODUCTS
60GHZ PRODUCTS
Image of RouterBOARD ROUTERBOARD
ROUTERBOARD
MORE
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
Go to home page
SUBSCRIBE TO OUR NEWSLETTER
SUBSCRIBE TO OUR NEWSLETTER
HARDWARE
New
New
Search
Search
Ethernet routers
Ethernet routers
Switches
Switches
Wireless systems
Wireless systems
Wireless for home and office
Wireless for home and office
LTE/5G products
LTE/5G products
IoT products
IoT products
60 GHz products
60 GHz products
RouterBOARD
RouterBOARD
Enclosures
Enclosures
Interfaces
Interfaces
Accessories
Accessories
Antennas
Antennas
SFP/QSFP
SFP/QSFP
SOFTWARE
Downloads
Downloads
Changelogs
Changelogs
RouterOS
RouterOS
WinBox
WinBox
Mobile apps
Mobile apps
Back to Home
Back to Home
Connectivity
Connectivity
DISTRIBUTORS
Buy something (find a distributor)
Buy something (find a distributor)
Sell something (become a distributor)
Sell something (become a distributor)
Made for MikroTik
Made for MikroTik
SUPPORT
Documentation
Documentation
Consultants
Consultants
Forum
Forum
Help
Help
Security
Security
Warranty
Warranty
TRAINING
About
About
Schedule
Schedule
Training centers & trainers
Training centers & trainers
Academies
Academies
Train the trainer
Train the trainer
Certificate Search
Certificate Search
ABOUT
Contacts
Contacts
Company
Company
Our Logo
Our Logo
Vacancies
Vacancies
Write email to [EMAIL]
Go to Mikrotik TikTube
Go to Mikrotik YouTube channel
Go to Mikrotik Mastodon page
Go to Mikrotik Facebook page
Privacy Policy
Privacy Policy...
|
Firefox
|
MikroTik · Hardware — Personal
|
mikrotik.com/hardware
|
80954
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · netPower 16P
MikroTik · netPower 16P
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
netPower 16P
netPower 16P
netPower 16P
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
ARM
Dual boot
IP 54
Outdoors
PoE
SFP/SFP+
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
Powering a bunch of access points or IP cameras and a few uplinks on a tower has never been easier. netPower 16P has 16 Gigabit Ethernet ports with PoE-out and two SFP+ ports for 10G fiber uplinks.
Its sturdy and compact outdoor enclosure allows the switch to be mounted in all kinds of environments – from damp attics and shafts to towers, masts and poles with hose clamps.
netPower 16P has a non-blocking throughput of 36 Gbps, switching capacity of 72 Gbps and forwarding rate of 53.6 Mpps.
Device itself does not have an onboard voltage converter. You need 24V PSU to have 24V PoE out and/or 48V PSU to have 48V PoE out (IEEE 802.3 at/af).
* Power supply is NOT included with the product. You are welcome to use your preferred power option, like battery pack etc. Compatible also with MikroTik power supplies 24HPOW, MTP250-53V47-OD, MTP250-26V94-OD, 48POW and 48V2A96W
Specification
Specification
SPECIFICATIONS
Product code
CRS318-16P-2S+OUT
Suggested price
$279.00
Architecture
ARM 32bit
CPU
98DX226S
CPU core count
2
CPU nominal frequency
800 MHz
Switch chip model
98DX226S
Dimensions
303 x 212 x 78 mm
RouterOS license
5
Operating System
RouterOS / SwitchOS
Size of RAM
256 MB
Storage size
16 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
2
(DC jack)
DC jack input Voltage
18-30 V / 48-57 V
Max power consumption
316 W
Max power consumption without attachments
16 W
Cooling type
Passive
POE-OUT
PoE-out ports
Ether1-Ether16
PoE out
802.3af/at
Low voltage PoE-Out current limit
1.1 A
High voltage PoE-Out current limit
0.6 A
Max total out (A)
2.8A (18V-30V) & 1.4A (48V-57V) x2
ETHERNET
10/100/1000 Ethernet ports
16
Number of 1G Ethernet ports with PoE-out
16
FIBER
SFP+ ports
2
OTHER
CPU temperature monitor
Yes
Voltage Monitor
Yes
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
IP54
INCLUDED PARTS
Image of Hose clamp 2 Hose clamp 2
Hose clamp 2
Image of K-66 fastening set K-66 fastening set
K-66 fastening set
Image of DC to Terminal block adapter x2 DC to Terminal block adapter x2
DC to Terminal block adapter x2
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
DOC
DOC
Quick Guide
Quick Guide
Block Diagram
Block Diagram
Mounting template
Mounting template
Quick Guide
Quick Guide
User Manual
User Manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM
devices.
Latest SwitchOS release
v2.18
download files for
CSS318P
devices.
SYSTEM PACKAGE
RouterOS
RouterOS
SwitchOS
SwitchOS
MORE
Netinstall:
Win64
Win64
Win32
Win32
Linux CLI
Linux CLI
More in
download
download
page
Related Products...
|
Firefox
|
MikroTik · netPower 16P — Personal
|
mikrotik.com/product/netpower_16p
|
80953
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · netPower 16P
MikroTik · netPower 16P
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
netPower 16P
netPower 16P
netPower 16P
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
ARM
Dual boot
IP 54
Outdoors
PoE
SFP/SFP+
SPECIFICATION
SPECIFICATION
FIND RETAILER
FIND RETAILER
Powering a bunch of access points or IP cameras and a few uplinks on a tower has never been easier. netPower 16P has 16 Gigabit Ethernet ports with PoE-out and two SFP+ ports for 10G fiber uplinks.
Its sturdy and compact outdoor enclosure allows the switch to be mounted in all kinds of environments – from damp attics and shafts to towers, masts and poles with hose clamps.
netPower 16P has a non-blocking throughput of 36 Gbps, switching capacity of 72 Gbps and forwarding rate of 53.6 Mpps.
Device itself does not have an onboard voltage converter. You need 24V PSU to have 24V PoE out and/or 48V PSU to have 48V PoE out (IEEE 802.3 at/af).
* Power supply is NOT included with the product. You are welcome to use your preferred power option, like battery pack etc. Compatible also with MikroTik power supplies 24HPOW, MTP250-53V47-OD, MTP250-26V94-OD, 48POW and 48V2A96W
Specification
Specification
SPECIFICATIONS
Product code
CRS318-16P-2S+OUT
Suggested price
$279.00
Architecture
ARM 32bit
CPU
98DX226S
CPU core count
2
CPU nominal frequency
800 MHz
Switch chip model
98DX226S
Dimensions
303 x 212 x 78 mm
RouterOS license
5
Operating System
RouterOS / SwitchOS
Size of RAM
256 MB
Storage size
16 MB
Storage type
FLASH
MTBF
Approximately 200'000 hours at 25C
Tested ambient temperature
-40°C to 70°C
POWERING
Number of DC inputs
2
(DC jack)
DC jack input Voltage
18-30 V / 48-57 V
Max power consumption
316 W
Max power consumption without attachments
16 W
Cooling type
Passive
POE-OUT
PoE-out ports
Ether1-Ether16
PoE out
802.3af/at
Low voltage PoE-Out current limit
1.1 A
High voltage PoE-Out current limit
0.6 A
Max total out (A)
2.8A (18V-30V) & 1.4A (48V-57V) x2
ETHERNET
10/100/1000 Ethernet ports
16
Number of 1G Ethernet ports with PoE-out
16
FIBER
SFP+ ports
2
OTHER
CPU temperature monitor
Yes
Voltage Monitor
Yes
CERTIFICATION & APPROVALS
Certification
CE, EAC, ROHS
IP
IP54
INCLUDED PARTS
Image of Hose clamp 2 Hose clamp 2
Hose clamp 2
Image of K-66 fastening set K-66 fastening set
K-66 fastening set
Image of DC to Terminal block adapter x2 DC to Terminal block adapter x2
DC to Terminal block adapter x2
NOTE
The device has an operating system preinstalled and licensed. No separate purchase is necessary and the product is ready to use. The device includes free software updates for the life of the product or a minimum of 5 years starting from date of purchase.
SWITCHING RESULTS
ETHERNET TEST RESULTS
Documents
Documents
Brochure
Brochure
Read product brochure and find out about features and specification
.PDF
Open brochure
DOC
DOC
Quick Guide
Quick Guide
Block Diagram
Block Diagram
Mounting template
Mounting template
Quick Guide
Quick Guide
User Manual
User Manual
Product images
Product images
Download
Download
Latest RouterOS stable release
v7.22.2
download files for
ARM
devices.
Latest SwitchOS release
v2.18
download files for
CSS318P
devices.
SYSTEM PACKAGE
RouterOS...
|
Firefox
|
MikroTik · netPower 16P — Personal
|
mikrotik.com/product/netpower_16p
|
80952
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80951
|
|
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80950
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80949
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80948
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80947
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80946
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80945
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80944
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+
40G
ROS v7
One of our faster switches for the most demanding setups.
Product page for CRS326-4C+20G+2Q+RM
CRS326-4C+20G+2Q+RM
$999.00...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80943
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80942
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+
40G
ROS v7
One of our faster switches for the most demanding setups.
Product page for CRS326-4C+20G+2Q+RM
CRS326-4C+20G+2Q+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80941
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+
40G...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80940
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+
40G
ROS v7
One of our faster switches for the most demanding setups.
Product page for CRS326-4C+20G+2Q+RM
CRS326-4C+20G+2Q+RM
$999.00
*...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80939
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80938
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM...
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80937
|
|
Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5 Product page for CRS320-8P-8B-4S+RM
DXP4800PLUS-B5F8
Inbox (7) - [EMAIL] - Gmail
(56) Inbox | [EMAIL] | Proton Mail
Welcome back
Welcome back
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Western Digital Red Plus 3.5 6TB 5400rpm 256MB SATA3 (WD60EFPX) от 241,72 € (472,76 лв.) Вътрешен хард диск Western Digital - Pazaruvaj.com
Today's Deals
Today's Deals
architecture - screenpipe docs
architecture - screenpipe docs
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Claude Code works better when you stop treating it like a machine - [EMAIL] - Gmail
Screenpipe — Archive
Screenpipe — Archive
SQLite Web: archive.db
SQLite Web: archive.db
SQLite Web: db.sqlite
SQLite Web: db.sqlite
Claude Platform
Claude Platform
Hey @louis030195 Ill check during my - screenpipe.com
Hey @louis030195 Ill check during my - screenpipe.com
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
GitHub - screenpipe/screenpipe: Run agents that work for you based on what you do. AI finally knows what you are doing · GitHub
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
Gong Pricing in 2026: Costs, Plans & Is It Worth It?
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
GLM 5.1 Thinks Strategically, Data-Center Revolt Intensifies, When Helpful LLMs Turn Unhelpful, Humanoid Robots Get to Work - [EMAIL] - Gmail
Gitea Official Website
Gitea Official Website
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
lakylak/screenpipe - screenpipe - Gitea: Git with a cup of tea
New Tab
New Tab
MikroTik · Switches
MikroTik · Switches
Close tab
New Tab
Customize sidebar
Open Le Chat Mistral (⌃X)
Open history (⇧⌘H)
Open bookmarks (⌘B)
Bitwarden
Skip to main content
Skip to main content
Go to home page
HOME
HOME
HARDWARE
HARDWARE
SWITCHES
SWITCHES
Status
Status
Wired Interfaces
Wired Interfaces
Options Range
Options Range
Features
Features
Operating System
Operating System
Architecture
Architecture
Product page for netPower Lite 8P
NEW
netPower Lite 8P
$199.00
*
SFP/SFP+
PoE
Outdoors
IP 54
Low-cost. Tough. And always ON! Compact PoE switch with built-in UPS and smart battery charger – because your CCTV cameras and access points deserve true off-the-grid resilience.
Product page for CRS804 DDQ
NEW
CRS804 DDQ
$1,295.00
*
400G
10G
ARM64
Quad-core CPU
ROS v7
A compact 1U 400G switch built for AI clusters, storage fabrics, and high-speed aggregation, featuring four 400G QSFP56-DD ports, dual 10 Gigabit Ethernet, and RouterOS v7. With hot-swap power supplies, robust cooling, and low power consumption, it delivers ultra-high bandwidth, wire-speed performance, and future-proof scalability at an accessible price point.
Product page for CRS304-4XG-IN
CRS304-4XG-IN
$199.00
*
10G
PoE
ARM64
ROS v7
Compact, powerful, and ready to simplify your 10 Gigabit network setups with 4x10G Ethernet ports ready to use out-of-the-box. No extra modules needed!
Product page for CRS305-1G-4S+IN
CRS305-1G-4S+IN
$149.00
*
SFP/SFP+
PoE
ARM
Five-port desktop switch with one Gigabit Ethernet port and four SFP+ 10Gbps ports
Product page for CRS312-4C+8XG-RM
CRS312-4C+8XG-RM
$699.00
*
10G
Combo ports
ROS v7
Switch of the future: the first MikroTik product with 10G RJ45 Ethernet ports and SFP+
Product page for CRS320-8P-8B-4S+RM
CRS320-8P-8B-4S+RM
$489.00
*
SFP/SFP+
PoE
ARM
ROS v7
The first MikroTik high-power PoE++ switch – for easy and cost-effective powering of industry standard 802.3af/at/bt devices. Forget about countless power cables – create a cleaner space with PoE++!
Product page for CRS317-1G-16S+RM
CRS317-1G-16S+RM
$499.00
*
SFP/SFP+
ARM
Smart Switch, 1 x Gigabit LAN, 16 x SFP+ cages, Dual Core 800MHz CPU, 1GB RAM, 1U rackmount passive cooling case, Dual Power Supplies
Product page for CRS309-1G-8S+IN
CRS309-1G-8S+IN
$269.00
*
SFP/SFP+
PoE
ARM
Desktop switch with one Gigabit Ethernet port and eight SFP+ 10Gbps ports
Product page for CRS518-16XS-2XQ-RM
CRS518-16XS-2XQ-RM
$1,595.00
*
100G
ROS v7
A 100 Gigabit switch for enterprise networks and data centers. Hot-swappable parts and insane port density with 1.2 Tbps switching capacity!
Product page for CRS310-1G-5S-4S+IN
CRS310-1G-5S-4S+IN
$199.00
*
SFP/SFP+
PoE
ARM
ROS v7
10 Gigabit fibre connectivity way over a 100 meters – for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing on a budget!
Product page for CRS310-8G+2S+IN
CRS310-8G+2S+IN
$219.00
*
SFP/SFP+
2.5G
ARM
ROS v7
Take advantage of the blazing fast 2.5/10 Gigabit combo and upgrade your workspace! This switch can utilize the full potential of RouterOS v7: run VLANs, Jumbo frames, link aggregation, ACL rules, and so much more!
Product page for netPower 16P
netPower 16P
$279.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 16 Gigabit PoE-out ports and 2 SFP+. Power all your access points anywhere!
Product page for netPower 15FR
netPower 15FR
$169.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
An outdoor 18 port switch with 15 reverse PoE ports and SFP. Cut costs, not speed – choose GPEN over GPON!
Product page for netFiber 9
netFiber 9
$249.00
*
SFP/SFP+
PoE
ARM
Outdoors
IP 54
ROS v7
A remarkable outdoor switch for setting up an optical 10G network that can even perform some light routing. The spiritual successor to the beloved FiberBox. Gigabit Ethernet, SFP/SFP+, PoE.
Product page for CRS326-24G-2S+IN
CRS326-24G-2S+IN
$199.00
*
SFP/SFP+
PoE
ARM
24 Gigabit ports, 2 SFP+ cages and a desktop case – server room power for your home!
Product page for CRS326-24G-2S+RM
CRS326-24G-2S+RM
$209.00
*
SFP/SFP+
PoE
ARM
24 Gigabit port switch with 2 x SFP+ cages in 1U rackmount case, Dual boot (RouterOS or SwitchOS)
Product page for CRS326-24S+2Q+RM
CRS326-24S+2Q+RM
$599.00
*
SFP/SFP+
40G
ROS v7
One of our faster switches for the most demanding setups....
|
Firefox
|
MikroTik · Switches — Personal
|
mikrotik.com/products/group/switches
|
80936
|